Finance MCP Server
Exposes personal-finance tools like accounts, transactions, spending analysis, budgets, bills, reminders, portfolio, and goals via MCP, enabling any MCP client to query financial data.
README
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 |
|---|---|
get_accounts |
Balances across checking/savings/credit/brokerage/401(k) + net worth |
get_transactions |
Individual transactions, filterable by month and category |
analyze_spending |
Per-category monthly totals, trends, top merchants |
get_budgets |
Budget vs. actual for the current month with over/under status |
get_bills |
Recurring bills with next due dates and due-soon flags |
set_bill_reminder |
Create a reminder N days before a bill is due |
get_portfolio |
Holdings, gains/losses, asset allocation |
get_financial_goals |
Savings goals with progress + income/risk profile |
Setup
python3 -m venv .venv && .venv/bin/pip install -r requirements.txt
.venv/bin/python test_client.py # smoke test: lists tools, calls three
If
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.py
Claude 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.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.