Expense Tracker MCP Server
Enables users to add, list, and summarize expenses, and exposes expense categories as a resource.
README
Expense Tracker MCP Server
A simple Expense Tracker MCP server built with FastMCP and SQLite.
Features
- Add expenses
- List expenses by date range
- Summarize expenses by category
- Expose expense categories as an MCP resource
- Compatible with Claude Desktop and MCP Inspector
Tech Stack
- Python 3.14+
- FastMCP 3.4.0
- SQLite
Installation
Clone the repository and install dependencies:
uv sync
or
uv add fastmcp
Project Structure
.
├── main.py
├── expenses.db
├── categories.json
├── pyproject.toml
├── uv.lock
└── README.md
Available Tools
add_expense
Add a new expense record.
Parameters:
- date
- amount
- category
- subcategory (optional)
- note (optional)
Example:
{
"date": "2026-06-01",
"amount": 600,
"category": "transport",
"subcategory": "cab_ride_hailing",
"note": "Cab ride to Delhi"
}
list_expenses
List expenses within a date range.
Parameters:
- start_date
- end_date
summarize
Summarize expenses by category.
Parameters:
- start_date
- end_date
- category (optional)
Available Resources
expense://categories
Returns the contents of categories.json.
Example categories:
- food
- transport
- housing
- utilities
- health
- education
- entertainment
- shopping
- travel
- investments
- and more
Running the MCP Server
Start the server:
uv run fastmcp run main.py
MCP Inspector
Launch the MCP Inspector for local testing:
uv run fastmcp dev inspector main.py
Claude Desktop Integration
Install the server into Claude Desktop:
uv run fastmcp install claude-desktop main.py
Restart Claude Desktop after installation.
Example Prompts
Add an expense:
Add an expense of ₹600 for a cab ride to Delhi last Sunday.
List expenses:
Show all expenses between 2026-06-01 and 2026-06-30.
Summarize expenses:
Summarize my expenses for June 2026.
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.