finance-mcp
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-mcpshow my spending summary for last 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
Local, privacy-first access to your bank and credit-card transactions for Copilot, backed by SimpleFIN. It pulls transactions from your institutions into a normalized on-disk cache and exposes them to Copilot as an MCP server. Nothing leaves your machine except the single HTTPS call to SimpleFIN — no third-party SaaS sees your data, and no fake/sample data is ever shown.
Why SimpleFIN
All of these institutions are supported by SimpleFIN (verified against its live institution search): Target credit card, Nordstrom Card Services, Amazon Chase card (via Chase Bank), Fidelity credit card, Fidelity NetBenefits (via Fidelity Investments), Charles Schwab, and Cyprus Credit Union. SimpleFIN costs ~$15/yr flat with no per-account billing, and you hold the access token.
Security model
The SimpleFIN access URL embeds Basic-Auth credentials that can read your transactions. It is therefore stored outside this project directory (this repo may live in a synced folder like Dropbox):
Access URL + transaction cache live in
~/.finance-mcp/(dir0700, files0600).Override the location with
FINANCE_MCP_HOME.The access URL may instead be supplied via the
SIMPLEFIN_ACCESS_URLenv var (takes precedence over the saved file), so it never has to touch disk.
Setup
Get a SimpleFIN setup token: sign up at https://bridge.simplefin.org/ and generate one (it is a base64 string).
Claim it (one-time — the token dies after a successful claim):
uv run finance-mcp claim # prompts for the token # or: uv run finance-mcp claim <SETUP_TOKEN>The resulting access URL is saved to
~/.finance-mcp/access_url(mode 0600).Pull your transactions into the cache:
uv run finance-mcp sync --days 120
CLI
uv run finance-mcp accounts # balances per account
uv run finance-mcp transactions --search grocery # search the full archive
uv run finance-mcp transactions --start 2026-01-01 --account <id> --json
uv run finance-mcp summary --group-by month # inflow/outflow aggregation
uv run finance-mcp networth # net-worth total per snapshot date
uv run finance-mcp stats # archive size + date coverage
uv run finance-mcp sync --days 120 # refresh from SimpleFINSimpleFIN caps a request at 90 days and expects <=24 requests/day, so sync
chunks long ranges into <=89-day windows and you should rely on the archive for
day-to-day queries rather than re-syncing constantly. Any SimpleFIN warnings or
errors (errors/errlist) are always surfaced.
Local archive (multi-year history)
Every sync does two things locally, both in ~/.finance-mcp/ (mode 0600):
updates
cache.json— the latest normalized snapshot, andfolds the data into
archive.db, a SQLite database that is the durable, searchable, multi-year history.
The archive is append-only: transactions are upserted by their stable
SimpleFIN id (a pending charge is later promoted to posted without duplicating),
first_seen is preserved, and nothing is ever deleted — so a transaction stays
in the archive even after it ages out of SimpleFIN's rolling window. Each sync
also records a balance snapshot per account, which is what powers
networth / net_worth_history trends over time.
All read commands and MCP tools serve from archive.db (falling back to
cache.json only before the first sync on this version). You can also query it
with any SQLite tool:
sqlite3 ~/.finance-mcp/archive.db \
"SELECT posted, amount, description FROM transactions ORDER BY posted_ts DESC LIMIT 10;"MCP server (use it from Copilot)
The server runs over stdio and exposes these tools:
Tool | Network? | Purpose |
| no | accounts + balances + institution |
| no | just balances and as-of dates |
| no | filter by date / account / search / amount |
| no | inflow/outflow grouped by account, org, or month |
| no | total balance per snapshot date (net-worth trend) |
| no | archive size + earliest/latest transaction |
| yes | refresh the cache + archive from SimpleFIN |
Install for others (no clone needed)
With uv installed, you can claim/sync and run the
server straight from this repo — uvx fetches and builds it on demand:
# one-time claim + first sync
uvx --from git+https://github.com/dfrysinger/finance-mcp finance-mcp claim
uvx --from git+https://github.com/dfrysinger/finance-mcp finance-mcp sync --days 120Then register it with Copilot CLI by adding this to ~/.copilot/mcp-config.json
under mcpServers (or run /mcp in Copilot to manage):
{
"mcpServers": {
"finance": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/dfrysinger/finance-mcp",
"finance-mcp-server"
],
"tools": ["*"]
}
}
}Local checkout alternative
If you cloned the repo and prefer running from the working tree:
{
"mcpServers": {
"finance": {
"command": "uv",
"args": ["--directory", "<ABSOLUTE_PATH_TO>/finance-mcp", "run", "finance-mcp-server"],
"tools": ["*"]
}
}
}get_transactions/spending_summary serve the durable archive (archive.db),
which sync (CLI) or sync_now keeps up to date.
Notes / limitations
SimpleFIN does not provide spending categories, so
spending_summarygroups only by real fields (account, institution, month). No categories are invented.Amounts are signed: negative = money out. Use
max_amount=0for spending-only,min_amount=0for income-only.
Development
uv run pytest -qVerified end-to-end against SimpleFIN's public demo dataset (claim → fetch → normalize → cache → query, plus an MCP stdio round-trip).
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.
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/dfrysinger/finance-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server