Skip to main content
Glama
xinrong-meng

My Finance MCP Server

by xinrong-meng

My Finance MCP Server

Bare-bones Model Context Protocol server that lets Claude store personal finance transactions and later query them via semantic search. Transactions are persisted in ChromaDB for vector search plus a JSON ledger for backup.

Run it alongside Claude Desktop and you get an AI bookkeeper that remembers your receipts, statements, and portfolios—then answers natural language questions about spending trends, allocations, or anything else you upload.

Setup

Install

uv sync

Run

uv run my_finance_mcp.py

Configure Claude Desktop

Add to ~/.claude_desktop_config.json:

{
  "mcpServers": {
    "my-finance": {
      "command": "uv",
      "args": [
        "run",
        "--project",
        "/path/to/my_finance",
        "/path/to/my_finance/my_finance_mcp.py"
      ]
    }
  }
}

Related MCP server: Wealthfolio MCP Server

Usage

Exposed tools:

  • store_transactions(transactions) – ingest structured transactions (Claude will extract them from uploaded docs)

  • query_financial_history(query) – run semantic search across everything stored

  • list_transactions(limit=20, offset=0, category=None) – page through the JSON ledger to inspect what’s saved and see each transaction’s index

  • delete_transactions(indices=None, delete_all=False, confirm=False) – delete entries by index or wipe them all (requires confirm=True)

  1. Upload financial data to Claude

  2. Say: "Store this transaction data"

  3. Claude calls the MCP server to save it

  4. Later ask: "How much did I spend on groceries last month?"

  5. Claude searches your historical data via MCP

  6. Use "Show me the stored transactions" or "Delete transaction xx" to invoke the management tools

Example Claude Desktop interaction

User: Remember these portfolio positions for later analysis.
Claude: I'll help you store your portfolio positions from the uploaded CSV file for later analysis. Let me read the file and process the data..
Perfect! I've stored your portfolio positions from November 6, 2025 in your finance system. Here's a summary of what was recorded:...

User: List my stored transactions
Claude: Here are your current stored transactions (4 total):...

User: Delete VXUS - International Stock ETF transaction
Claude: The VXUS - International Stock ETF transaction has been successfully deleted from your stored transactions.

User: List all transactions
Claude: Here are your current stored transactions (3 total):...

Data Storage

  • ~/.my_finance_mcp/financial_data/ - ChromaDB vector database (created automatically)

  • ~/.my_finance_mcp/transactions.json - JSON backup of all transactions

Set the MY_FINANCE_MCP_DIR environment variable before launching Claude if you want to store data in a different directory.

Install Server
A
license - permissive license
B
quality
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • F
    license
    -
    quality
    D
    maintenance
    Enables AI-powered portfolio analysis for Wealthfolio, allowing Claude to query and analyze investment holdings, asset allocation, real estate properties, and execute transactions through natural language.
    Last updated
    1
  • F
    license
    -
    quality
    D
    maintenance
    Enables personal finance tracking through Claude Desktop using natural language to manage income and expenses with persistent SQLite storage. Supports adding and deleting transactions, checking balances, and viewing spending summaries grouped by category or month.
    Last updated
  • A
    license
    -
    quality
    D
    maintenance
    AI-powered personal finance analysis through Claude AI using Plaid integration, enabling natural language queries about transactions, subscriptions, budgets, and spending trends.
    Last updated
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • Personal finance by conversation: expenses, receipts, statement import, budgets, net worth.

  • Ask your AI about bank accounts, spending, debts, holdings, and investment activity.

  • Persistent context for Claude. Your AI always knows your projects and next actions across sessions.

View all MCP Connectors

Latest Blog Posts

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/xinrong-meng/my-finance-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server