Finance MCP Server
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., "@Finance MCP ServerHow am I tracking against my budget this month?"
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.
Finance MCP Server
A Model Context Protocol server exposing personal-finance tools — accounts, transactions, spending analysis, budgets, bills, reminders, portfolio, and goals — so any MCP client (Claude Desktop, Claude Code, custom agents) can query financial data through a standard interface.
The tool layer is shared with finance-copilot: same deterministic sample dataset, same eight tools, different transport — there they're wired into a bespoke agentic loop; here they're served over MCP.
Tools
Tool | Purpose |
| Balances across checking/savings/credit/brokerage/401(k) + net worth |
| Individual transactions, filterable by month and category |
| Per-category monthly totals, trends, top merchants |
| Budget vs. actual for the current month with over/under status |
| Recurring bills with next due dates and due-soon flags |
| Create a reminder N days before a bill is due |
| Holdings, gains/losses, asset allocation |
| Savings goals with progress + income/risk profile |
Related MCP server: LunchMoney MCP Server
Setup
python3 -m venv .venv && .venv/bin/pip install -r requirements.txt
.venv/bin/python test_client.py # smoke test: lists tools, calls threeIf
piptries to compilecryptographyfrom source (Anaconda x86_64 Python without a matching wheel), create the venv withpython3 -m venv .venv --system-site-packagesto reuse the system copy.
Connect a client
Claude Code:
claude mcp add finance -- /path/to/finance-mcp-server/.venv/bin/python /path/to/finance-mcp-server/server.pyClaude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"finance": {
"command": "/path/to/finance-mcp-server/.venv/bin/python",
"args": ["/path/to/finance-mcp-server/server.py"]
}
}
}Then ask: "How am I tracking against my budget this month?" — the client discovers the tools automatically and the model calls them as needed.
Design notes
FastMCP generates tool schemas from Python type hints and docstrings — the schemas stay in sync with the code by construction.
stdio transport — the client spawns the server as a subprocess; no ports, no network exposure.
Demo data —
finance_data.pygenerates a deterministic fake bank (fixed seed). Swap it for a real aggregator (e.g. Plaid) to serve live data; the MCP surface doesn't change.test_client.pydoubles as a minimal example of driving an MCP server programmatically with the Python SDK.
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
- Flicense-qualityFmaintenanceAn MCP server that provides access to personal financial data from Monarch Money, allowing users to retrieve account information, transactions, budgets, goals, and net worth through natural language queries.Last updated16
- AlicenseAqualityAmaintenanceAn MCP server implementation that provides programmatic access to personal finance data through LunchMoney's API, enabling AI assistants to manage transactions, budgets, categories, and assets.Last updated4137685MIT
- Flicense-qualityBmaintenanceAn MCP server that integrates with Monarch Money to provide financial data access and operations, including account management, transaction filtering, budget analysis, and goal tracking through natural language.Last updated
- Alicense-qualityCmaintenanceEnables querying personal finance data including accounts, transactions, spending, holdings, net worth, and budgets from your self-hosted OpenCoffer instance. Supports natural language queries through any MCP-compatible client.Last updated12MIT
Related MCP Connectors
MCP server for US Treasury Fiscal Data — debt, interest rates, exchange rates, and spending.
Connect AI agents to bank accounts, transactions, balances, and investments.
The financial MCP for AI agents - 90+ financial tables, SEC filings, signals, alt-data.
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/arunkonapala/finance-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server