Expense Tracker MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Expense Tracker MCP ServerAdd $30 for gas to Transport category"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Expense Tracker MCP Server
A powerful, highly detailed MCP (Model Context Protocol) server that exposes a full-featured personal expense tracker to any MCP-compatible AI client β including Claude Desktop, Claude Code, and the MCP Inspector.
Manage your finances through natural language directly in your AI assistant. Add, edit, delete, and query expenses; set monthly budgets; and generate comprehensive spending reports seamlessly.
π Key Features
πΈ Natural Language Expense Management: Add, list, edit, and delete expenses effortlessly using AI prompts (e.g., "I just spent 500 on dinner, add it to Food").
ποΈ Intelligent Categorization: Group expenses into categories. Automatically provisions default categories (Food, Transport, Utilities, Entertainment, Shopping) on user signup.
π° Proactive Budgeting: Set per-category or overall monthly spending limits. Get overspend warnings directly in your AI chats.
π Advanced Analytics & Reporting: View monthly summaries with month-over-month (MoM) spending comparisons and percentage changes.
π Data Export: Generate full expense reports exported as Markdown or CSV strings right in your AI assistant's context.
π Contextual Resources: Expose read-only MCP resources for browsing expenses and budget statuses (e.g.
expenses://month/2026-07).βοΈ Cloud-Native Storage: Uses PostgreSQL for robust, ACID-compliant data storage. Fully prepared for SSE-based cloud deployment.
π Secure OAuth Authentication: Uses Google OAuth for seamless and secure user authentication. Automatically provisions isolated accounts for each user, ensuring your financial data remains private and strictly sandboxed.
Related MCP server: Expense Tracker MCP Server
ποΈ Architecture & Stack
Framework: Built on FastMCP, a modern declarative framework for writing MCP servers in Python.
Database: PostgreSQL via the
asyncpgdriver for high-performance, async database operations. Schema migrations execute automatically and idempotently on server startup.Authentication Flow:
The MCP Client initializes the connection.
The server requests OAuth authentication via FastMCP's
OAuthProxy.The user logs in via Google OAuth.
The
DatabaseGoogleTokenVerifierintercepts the Google token, extracts the email, and gracefully provisions a new user record in the PostgreSQL database if they don't exist.Subsequent tool calls securely map to that specific user's
user_id.
Database Schema
The PostgreSQL database enforces strong relational integrity. All financial amounts are stored safely as integer cents to avoid floating-point math errors.
users: Stores OAuth-provisioned accounts with a securetoken_hashandsalt.categories: User-specific expense categories (Unique peruser_id+name).expenses: Individual transactions linking auser_id,category_id,amount_cents, andexpense_date.budgets: Monthly limits (overall or category-specific) tracked byYYYY-MM.
π Getting Started
Prerequisites
Python 3.13+
uv (Extremely fast Python package installer and resolver)
PostgreSQL database (Local, Docker, or managed cloud like Neon or Supabase)
Google Cloud Console account (for setting up OAuth Credentials)
1. Installation
git clone <repo-url>
cd expense-tracker-mcp-server
uv sync2. Google OAuth Setup
Go to the Google Cloud Console.
Create a new project (or use an existing one).
Navigate to APIs & Services > Credentials.
Click Create Credentials > OAuth client ID.
Choose Web application.
Set the Authorized redirect URIs to your deployed server URL (or
http://localhost:8000/callbackif testing locally via SSE).Copy your Client ID and Client Secret.
3. Environment Configuration
Copy the .env.example file to .env and configure your environment:
cp .env.example .envVariable | Requirement | Default | Description |
| Required | None | Postgres connection string (e.g. |
| Required | None | Your Google OAuth Client ID |
| Required | None | Your Google OAuth Client Secret |
| Optional |
| Google Auth endpoint |
| Optional |
| Google Token endpoint |
| Optional |
| Default currency formatting (e.g., USD, EUR, GBP) |
4. Running the Server Locally
# Run over STDIO (Standard input/output) β For direct Claude Desktop integration
uv run python -m expense_tracker_mcp_server
# Or use the installed CLI script
uv run expense-tracker-mcp
# Development mode with the web-based MCP Inspector UI
uv run fastmcp dev inspector src/expense_tracker_mcp_server/server.pyπ€ Claude Desktop Configuration
To use this server with Claude Desktop over STDIO, add it to your claude_desktop_config.json file.
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"Expense Tracker": {
"command": "uv",
"args": [
"run",
"--directory",
"/absolute/path/to/expense-tracker-mcp-server",
"expense-tracker-mcp"
],
"env": {
"DATABASE_URL": "postgresql://user:pass@localhost:5432/expenses",
"EXPENSE_DEFAULT_CURRENCY": "USD"
}
}
}
}Note: OAuth is typically used for Cloud/SSE deployments. For local STDIO usage, FastMCP may skip authentication depending on the client setup.
Restart Claude Desktop after saving the configuration. The expense tracker tools will appear in the tools panel (the hammer icon).
π οΈ MCP Capabilities Reference
Available Tools
Tool | Parameters | Description |
|
| Add a new expense (date defaults to today). |
|
| List expenses for a specific month (format: |
|
| Edit an existing expense record. |
|
| Permanently delete an expense record. |
| β | List all available categories. |
|
| Set a monthly spending limit (overall or per category). |
|
| Show spending vs budget limits with percentage utilized. |
|
| Get a monthly summary with category breakdown & MoM comparison. |
|
| Export a full report as a formatted Markdown or CSV string. |
Available Resources
URI Template | Description |
| Read-only view of all expenses for a month (e.g. |
| Read-only view of budget status for a specific month |
| Read-only list of all available expense categories |
π¬ Example AI Prompts
Once connected to your AI assistant, try asking:
"List my expense categories."
"I just paid my electric bill. Add an expense of $120 to Utilities."
"Set an overall monthly budget of $2000 for this month."
"Show me my budget status for this month. Am I close to my limit in any category?"
"Give me a summary of my spending for July 2026. How does it compare to June?"
"Export my expense report for this month as a CSV so I can put it in Excel."
βοΈ Cloud Deployment
This server is fully prepared for cloud deployment using Server-Sent Events (SSE) transport over HTTP.
Docker Deployment (Render, Fly.io, Railway, etc.)
The included Dockerfile starts the FastMCP server over SSE transport on port 8000.
To deploy, link your GitHub repository to your cloud provider (like Render), and they will automatically build and run the Docker image.
Critical Deployment Steps:
Set the
DATABASE_URLenvironment variable to your production PostgreSQL connection string.Set your
OAUTH_CLIENT_IDandOAUTH_CLIENT_SECRETenvironment variables.Update your Google OAuth Credentials in the Cloud Console to include your deployed URL as an Authorized redirect URI (e.g.,
https://your-app.onrender.com/callback).
FastMCP Cloud
If deploying via the fastmcp CLI (e.g., to Prefect Horizon), the project is already configured in fastmcp.json to use sse transport on port 8000.
π§ͺ Development & Testing
We use pytest for unit testing. The test suite is configured to automatically provision and drop a fresh database schema for isolated testing.
Make sure you have set TEST_DATABASE_URL in your .env file before running tests.
# Run all tests with verbose output
uv run pytest tests/ -vπ License
This project is licensed under the MIT License β see the LICENSE file for details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nitingupta95/expense-tracker-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server