AI Expense Tracker MCP Server
Enables Claude Desktop to manage personal expenses through natural language, providing tools to add, retrieve, delete, and summarize expenses stored in a PostgreSQL database.
README
AI Expense Tracker MCP Server
A lightweight AI-powered expense tracking backend that allows Claude Desktop to manage expenses using natural language through the Model Context Protocol (MCP).
Example prompts a user can give Claude:
- “Add an expense of 200 for groceries today.”
- “Show my expenses this week.”
- “How much did I spend on food?”
Claude converts these prompts into MCP tool calls, which are handled by this Python server and stored in a PostgreSQL database.
Project Environment
This project was developed and tested on Windows.
The MCP server can run using either:
- Global Python environment
- Virtual environment (.venv)
Both approaches are supported depending on your setup.
Project Architecture
Claude Desktop ↓ Remote MCP Server (FastMCP Cloud) ↓ Async Python Tools ↓ Neon PostgreSQL Database
Project Structure
expense-tracker-mcp-server
-
main.py → MCP server and tool registration
-
dbConnection.py → asynchronous database connection logic
-
tools/
- addExpense.py
- getExpenses.py
- totalExpenses.py
- deleteExpense.py
- rangeExpenses.py
- summary.py
Database Schema
Table: expenses
Columns:
- id (primary key)
- date
- amount
- category
- subcategory
- note
Example:
CREATE TABLE expenses (
id SERIAL PRIMARY KEY,
date DATE,
amount NUMERIC,
category VARCHAR(100),
subcategory VARCHAR(100),
note TEXT
);
Development Journey
1. Initial Local MCP Server
The project began as a local MCP server using FastMCP with a PostgreSQL database.
Tools were implemented for:
- Adding expenses
- Retrieving expenses
- Deleting expenses
- Viewing summaries
The database connection was handled using psycopg2.
2. Code Refactoring
A separate module dbConnection.py was created to manage database connections so that all tools could reuse the same connection logic.
This improved code maintainability and avoided duplication.
3. Converting to Asynchronous Server
The original implementation was synchronous, which blocked the server during database operations.
To improve performance and scalability:
psycopg2was replaced with asyncpg- All database functions were converted to async functions
- A PostgreSQL connection pool was implemented
This allows multiple MCP tool requests to run concurrently.
4. Migrating to Cloud Database
Since the server was later deployed remotely, the local database could not be used.
The project migrated to Neon PostgreSQL, a serverless cloud database.
Environment variables were configured in the deployment environment to connect securely.
5. Remote MCP Server Deployment
The MCP server was deployed using FastMCP Cloud.
The GitHub repository was connected to the platform so that:
- Every commit automatically triggers a new deployment
- The MCP endpoint stays updated with the latest code
6. Connecting Claude Desktop
The deployed MCP server requires authentication.
Claude Desktop was connected using the .dxt integration file, which automatically configures the MCP server connection.
Setup
Option 1 — Using a Virtual Environment (Recommended)
Create environment: python -m venv .venv
Activate (Windows): .venv\Scripts\activate
Install dependencies: pip install fastmcp asyncpg
Option 2 — Using Global Python Environment
Install dependencies globally: pip install fastmcp asyncpg
Running the Server Locally
Start the MCP server: python main.py
Restart Claude Desktop after updating MCP configuration.
Tools Available
add_expense→ Add a new expenseget_expenses→ Retrieve all expensestotal_expenses→ Calculate total spendingdelete_expense→ Remove an expenserange_expenses→ Expenses within a date rangesummary→ Category-wise spending summary
Tech Stack
- Python
- FastMCP
- asyncpg
- PostgreSQL
- Neon Database
- Claude Desktop
- Model Context Protocol (MCP)
Key Takeaways
- MCP enables AI assistants to interact with real systems using structured tools.
- Asynchronous database access significantly improves MCP server scalability.
- Cloud deployment requires environment variables and a remote database.
- Proper separation of database logic and tool logic improves maintainability.
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.