modelscope·@xinrong-meng/my-finance-mcp
暂无描述。
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.
<a href="https://glama.ai/mcp/servers/@xinrong-meng/my-finance-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@xinrong-meng/my-finance-mcp/badge" alt="My Finance Server MCP server" /> </a>Run it alongside Claude Desktop and you get an AI bookkeeper that remembers your receipts, statements, and portfoliosthen answers natural language questions about spending trends, allocations, or anything else you upload.
uv sync
uv run my_finance_mcp.py
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"
]
}
}
}
Exposed tools:
store_transactions(transactions) ingest structured transactions (Claude will extract them from uploaded docs)query_financial_history(query) run semantic search across everything storedlist_transactions(limit=20, offset=0, category=None) page through the JSON ledger to inspect whats saved and see each transactions indexdelete_transactions(indices=None, delete_all=False, confirm=False) delete entries by index or wipe them all (requires confirm=True)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):...
~/.my_finance_mcp/financial_data/ - ChromaDB vector database (created automatically)~/.my_finance_mcp/transactions.json - JSON backup of all transactionsSet the MY_FINANCE_MCP_DIR environment variable before launching Claude if you want to store data in a different directory.