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

MCP server for personal finance tracking, enabling expense/income recording, budget management, and financial summaries through 16 tools.

README.md

mcp-money

MCP server for personal finance tracking. Designed for AI assistants — track expenses, income, budgets, and get financial summaries through 16 MCP tools.

Uses PostgreSQL with Drizzle ORM. Auto-migrates on startup.

Requirements

  • Bun runtime
  • PostgreSQL 14+

Installation

bunx mcp-money

Configuration

Add to your MCP client config (e.g. Claude Desktop):

{
  "mcpServers": {
    "money": {
      "command": "bunx",
      "args": ["mcp-money"],
      "env": {
        "DATABASE_URL": "postgresql://user:pass@localhost:5432/mydb"
      }
    }
  }
}

Environment variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | DATABASE_URL | Yes | — | PostgreSQL connection string | | MCP_MONEY_SCHEMA | No | mcp_money | PostgreSQL schema name | | DEBUG | No | false | Enable SQL query logging to stderr |

Tools (16)

Transactions

| Tool | Description | |------|-------------| | add_transaction | Record an expense or income. Expenses stored as negative amounts. Tags created on-the-fly. | | list_transactions | List with filters: date range, category, tag, currency. Supports limit/offset pagination. | | update_transaction | Partial update of any field including tags. | | delete_transaction | Hard delete a transaction. |

Categories

| Tool | Description | |------|-------------| | list_categories | List all categories grouped by type (expense/income). | | create_category | Create a category with name, type, optional parent (one nesting level). | | delete_category | Delete a category. Fails if transactions, budgets, or child categories reference it. |

Tags

| Tool | Description | |------|-------------| | list_tags | List all tags. | | create_tag | Create a tag with a unique name. | | delete_tag | Delete a tag and all transaction associations (CASCADE). |

Summary

| Tool | Description | |------|-------------| | get_summary | Financial summary for a date range: expenses by category, totals and averages per currency. |

Budgets

| Tool | Description | |------|-------------| | set_budget | Set or update a monthly budget for a category. | | get_budget_status | Check budget vs actual spending for a month. Multi-currency aware. | | delete_budget | Delete a budget by ID. |

Utilities

| Tool | Description | |------|-------------| | set_currency | Set the default currency for new transactions (e.g. USD, EUR, RUB). | | health_check | Check DB connection, schema version, and statistics. |

Multi-currency

Every transaction stores its own currency. The default currency (initially USD) can be changed via set_currency. Summaries and budget statuses group by currency — no cross-currency conversion.

Default categories

On first run, ~10 categories are seeded: Groceries, Restaurants, Transport, Entertainment, Utilities, Rent, Salary, Healthcare, Shopping, Other.

Development

bun install
bun run dev        # watch mode
bun test           # run tests

Requires a running PostgreSQL instance. Set DATABASE_URL in .env.

License

ISC

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Finance & Payments servers.