Expense Tracker MCP Server

Expense Tracker MCP Server

Enables natural language management of personal expenses, including adding, listing, and summarizing expenses with local SQLite storage.

Category
Visit Server

README

💰 Expense Tracker MCP Server

A Model Context Protocol (MCP) server that enables Claude to seamlessly manage, track, and analyze your personal expenses. By connecting this server to your Claude client, you can simply tell Claude to log purchases, ask for monthly summaries, and identify your spending habits using natural language.

✨ Features

  • Natural Language Entry: Tell Claude "I just spent ₹15 on coffee" and let the server handle the categorization and data entry.
  • Detailed Analytics: Ask Claude to calculate your monthly totals, compare spending by category, or find specific past expenses.
  • Secure & Local: Expenses are stored locally (in a SQLite database), meaning your financial data doesn't leave your machine unless you share it in chat.
  • Fully MCP Compliant: Seamlessly integrates with Claude Desktop and other MCP-compatible clients.

🛠️ Prerequisites

  • Python 3.10+
  • Claude Desktop App installed on your machine.

🚀 Installation

  1. Clone the repository:

    git clone [https://github.com/Shivam0176/Expense-Tracker-MCP-Server.git](https://github.com/Shivam0176/Expense-Tracker-MCP-Server.git)
    
  2. Install dependencies:

    Python: pip install -r requirements.txt
    

🔌 Connecting to Claude

To use this server with Claude Desktop, you need to update your Claude configuration file.

  1. Open your Claude Desktop configuration file:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  2. Add the expense-tracker server to the mcpServers object:

    {
      "mcpServers": {
        "expense-tracker": {
          "command": "node",
          "args": [
            "/absolute/path/to/expense-tracker-mcp/build/index.js"
          ]
        }
      }
    }
    

    Note: Make sure to replace /absolute/path/to/... with the actual absolute path to the compiled server file on your machine. If you are using Python, the command would be "python" or "uv" and the arg would point to your python script.

  3. Restart Claude Desktop for the changes to take effect.


🧰 Available Tools

This MCP server exposes the following tools to Claude:

Tool Name Description Required Arguments Optional Arguments
add_expense Logs a new expense into the database. amount, category description, date (defaults to today)
list_expenses Retrieves a list of expenses. None limit, category, start_date, end_date
get_summary Provides a spending summary by category. None month, year
delete_expense Removes an expense record by its ID. id None

💬 Example Prompts

Once configured, you can talk to Claude just like a personal accountant:

  • "I just bought groceries at Whole Foods for $85.40."
  • "Can you show me a summary of my expenses for March 2024?"
  • "How much have I spent on the 'Dining Out' category this week?"
  • "Delete the last expense I added for 'Office Supplies'."

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured