expense-tracker
Provides a backend database via Supabase for storing and querying expenses, including tables, indexes, and automatic timestamp updates.
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-trackerAdd an expense: ā¹450 for lunch at Dominos today"
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 production-ready Model Context Protocol (MCP) server for your personal expense tracker, built with FastMCP 3.x and backed by Supabase (PostgreSQL).
Connect it to Claude Desktop, Cursor, or any MCP-compatible client and manage your finances with natural language.
⨠Features
Tool | What it does |
| Record a new expense |
| Modify any field of an existing expense |
| Permanently remove an expense |
| Fetch a single expense by UUID |
| Filter expenses by date, category, shop, amount, payment method |
| Full-text search across title, shop, notes, category |
| Totals & % breakdown by category / month / shop |
| Full month report with per-category breakdown |
| Compare spending vs a budget limit |
| All shops you've visited + visit counts + total spent |
| All unique categories in your data |
| Export to CSV |
Resources (live data snapshots):
expense://todayā Today's spendingexpense://recent/{n}ā Last N expensesexpense://categoriesā All categories in use
Related MCP server: Expense Tracker MCP
š Quick Setup
1. Create the Supabase Table
Go to supabase.com ā your project ā SQL Editor and run:
CREATE TABLE expenses (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
title TEXT NOT NULL,
amount NUMERIC(12, 2) NOT NULL CHECK (amount > 0),
category TEXT NOT NULL,
shop TEXT,
date DATE NOT NULL,
payment_method TEXT,
notes TEXT,
created_at TIMESTAMPTZ DEFAULT now(),
updated_at TIMESTAMPTZ DEFAULT now()
);
-- Auto-update updated_at on every row change
CREATE OR REPLACE FUNCTION update_updated_at()
RETURNS TRIGGER AS $$
BEGIN
NEW.updated_at = now();
RETURN NEW;
END;
$$ LANGUAGE plpgsql;
CREATE TRIGGER set_updated_at
BEFORE UPDATE ON expenses
FOR EACH ROW EXECUTE FUNCTION update_updated_at();
-- Indexes for fast filtering
CREATE INDEX idx_expenses_date ON expenses(date);
CREATE INDEX idx_expenses_category ON expenses(category);
CREATE INDEX idx_expenses_shop ON expenses(shop);2. Get Your API Keys
In Supabase ā Project Settings ā API:
Copy your Project URL
Copy your anon / public key (or service role key for private use)
3. Create Your .env File
copy .env.example .envEdit .env:
SUPABASE_URL=https://your-project-id.supabase.co
SUPABASE_KEY=your-anon-key-here4. Install Dependencies
uv sync5. Test the Server
# Start the MCP inspector (browser UI to test all tools)
uv run fastmcp dev main.pyš Claude Desktop Integration
Add this to your claude_desktop_config.json
(usually at %APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"expense-tracker": {
"command": "uv",
"args": ["run", "python", "main.py"],
"cwd": "C:\\Users\\saina\\OneDrive\\Desktop\\expense-tracker-mcp-server"
}
}
}Restart Claude Desktop. You'll see a š icon with expense-tracker tools available.
š¬ Example Prompts
Once connected to Claude Desktop, try:
"Add an expense: ā¹450 for lunch at Dominos today, paid by UPI"
"Show me all my Food expenses this month"
"How much did I spend in June 2026?"
"Am I over my ā¹5000 Food budget this month?"
"Where do I spend money most often?"
"Search for all Zomato expenses"
"Give me a monthly report for June 2026"
"Export all expenses from this month as CSV"
"What's my total spending this week by category?"šļø Project Structure
expense-tracker-mcp-server/
āāā main.py # FastMCP server ā all 12 tools + 3 resources
āāā db.py # Supabase data access layer
āāā models.py # Pydantic validation models
āāā .env # Your secrets (never commit this!)
āāā .env.example # Template for .env
āāā pyproject.toml # Dependenciesš”ļø Security Notes
Never commit your
.envfile (it's in.gitignore)Use the anon key for personal use ā it's safe for client-side access
Use Row Level Security (RLS) in Supabase if you ever share the project
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.
Related MCP Servers
- FlicenseCqualityDmaintenanceEnables personal expense management with SQLite storage, allowing users to add, update, delete, list, and summarize expenses by category through natural language interactions.5
- FlicenseNot gradedqualityCmaintenanceEnables management of expenses via SQLite database, including adding, listing, updating, deleting, filtering, and summing expenses through natural language.
- FlicenseNot gradedqualityCmaintenancePersistent expense tracker backed by Neon Postgres with SQL tools for adding, editing, deleting, and analyzing expenses via natural language.
- FlicenseNot gradedqualityBmaintenanceEnables managing personal expenses, budgets, and financial summaries through natural language, with tools for adding, listing, updating, deleting expenses, setting budgets and credits, and generating dashboards.
Related MCP Connectors
Log, query, and edit expenses, budgets, and accounts in Manilo from any MCP-compatible AI assistant.
Log, query, and edit expenses, budgets, and accounts in Ledgy from any MCP-compatible AI assistant.
Personal finance by conversation: expenses, receipts, statement import, budgets, net worth.
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/abhinayychaudharyy/expense-tracker-claude-connector'
If you have feedback or need assistance with the MCP directory API, please join our Discord server