Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

A local MCP server for tracking personal expenses using SQLite, enabling users to add, list, and summarize expenses via natural language.

README.md

Expense Tracker -- Local MCP Server

A simple local MCP (Model Context Protocol) server for tracking personal expenses using SQLite. This server exposes expense-related tools (add, list, summarize) that can be consumed by MCP-compatible clients such as Claude Desktop, Cursor, or other LLM hosts.

No HTTP server. No frontend. Just a clean local tool backend for LLMs.

---

Features

  • Add expense entries with date, amount, category, subcategory, and notes
  • List expenses within a date range
  • Summarize expenses by category
  • Local SQLite database (auto-created)
  • Categories exposed as an MCP resource (expense://categories)
  • Zero configuration beyond Python

---

Project Structure

expense_tracker/
│
├── server.py          # MCP server code
├── categories.json    # Expense categories (editable at runtime)
└── expenses.db        # SQLite database (auto-created)

---

Requirements

---

  • Python 3.9+
  • uv (recommended)
  • fastmcp

---

Setup

---

1\. Install uv (once)

pip install uv

Verify installation:

uv --version

2\. Create a virtual environment

From the project directory:

uv venv

Activate it:

  • Windows: .venv\Scripts\activate
  • macOS / Linux: source .venv/bin/activate

3\. Install dependencies

uv pip install fastmcp

---

Running the MCP Server

---

Start the server using:

uv run python server.py

_Note: You will see no output. This is expected behavior as the server runs silently and waits for a compatible client (like Claude) to connect._

To stop the server: CTRL + C

Database Behavior

  • The expenses.db file is automatically created on first run.
  • Tables are created using CREATE TABLE IF NOT EXISTS.
  • No manual database setup is required.

---

Available MCP Tools

---

add_expense

Adds a new expense entry to the database.

  • date: string (format: YYYY-MM-DD)
  • amount: number
  • category: string
  • subcategory: string (optional)
  • note: string (optional)

list_expenses

Lists all expenses within a given date range.

  • start_date: string (YYYY-MM-DD)
  • end_date: string (YYYY-MM-DD)

summarize

Summarizes expenses by category.

  • start_date: string (YYYY-MM-DD)
  • end_date: string (YYYY-MM-DD)
  • category: string (optional)

---

MCP Resources

---

expense://categories

Returns the contents of categories.json. The file is read fresh on every request, allowing category updates without restarting the server.

---

Using with Claude Desktop

---

Add the server to your claude_desktop_config.json (found in %APPDATA%\Claude on Windows or ~/Library/Application Support/Claude on macOS):

{
  "mcpServers": {
    "expense-tracker": {
      "command": "uv",
      "args": [
        "run",
        "--path",
        "C:/absolute/path/to/expense_tracker",
        "python",
        "server.py"
      ]
    }
  }
}

_Note: Ensure you use absolute paths and forward slashes / even on Windows._

---

License

---

MIT License --- free to use, modify, and distribute.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Databases servers.