Personal finance by conversation: expenses, receipts, statement import, budgets, net worth.
Connect Myfinance to Claude, Cursor or any other MCP client and it stops being a tab you switch to. Personal finance by conversation: expenses, receipts, statement import, budgets, net worth. The myfinance mcp server is what makes that connection.
A remote MCP server for personal finance - log expenses by talking, snap receipt photos, import whole bank statements, and get budgets, trends and net worth computed for you, in any currency.
Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
log_expense — Record one purchase, bill or receipt (negative amount = refund)log_income — Record income: salary, invoice, refund, interestlog_transfer — Move money between accounts, cross-currency supported; never counts as spendinglog_balance — Anchor an account's balance at a date; later flows compute from the snapshotimport_transactions — Bulk statement import (up to 500 rows/call): dedup by bank reference or derived key, twin merge, reconciliation checkcreate_account — Create a bank / card / cash / investment account with currency and personal/business entityupdate_account — Rename an account or change its type, entity or main currencydelete_account — Delete one money account (with its transactions after explicit confirmation)merge_accounts — Fold one account into another: move rows, de-duplicate both sides, rewrite transfersget_accounts — All accounts with balances and net worth, converted to base currencyget_summary — Period totals by category, merchant or month; expense or income breakdown, category drill-down and exclusionsget_transactions — List and filter raw transactionsConfiguration is passed through the environment: BASE_URL, DATABASE_URL, GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET, RESEND_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Among the database access options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Myfinance's toolset — log_expense, log_income, log_transfer and 11 more — is a fair guide to whether it matches your workflow. It is maintained by alex-odoo; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| log_expense | Record one purchase, bill or receipt (negative amount = refund) |
| log_income | Record income: salary, invoice, refund, interest |
| log_transfer | Move money between accounts, cross-currency supported; never counts as spending |
| log_balance | Anchor an account's balance at a date; later flows compute from the snapshot |
| import_transactions | Bulk statement import (up to 500 rows/call): dedup by bank reference or derived key, twin merge, reconciliation check |
| create_account | Create a bank / card / cash / investment account with currency and personal/business entity |
| update_account | Rename an account or change its type, entity or main currency |
| delete_account | Delete one money account (with its transactions after explicit confirmation) |
| merge_accounts | Fold one account into another: move rows, de-duplicate both sides, rewrite transfers |
| get_accounts | All accounts with balances and net worth, converted to base currency |
| get_summary | Period totals by category, merchant or month; expense or income breakdown, category drill-down and exclusions |
| get_transactions | List and filter raw transactions |
| get_trends | Month-over-month spending trends and deltas |
| set_budget | Monthly cap per category or overall |
| Variable | Description | Required |
|---|---|---|
| BASE_URL | Endpoint or connection string the server talks to. | Yes |
| DATABASE_URL | Endpoint or connection string the server talks to. | Yes |
| GOOGLE_CLIENT_ID | Configuration value read at startup. | Optional |
| GOOGLE_CLIENT_SECRET | Credential the server authenticates with. | Yes |
| RESEND_API_KEY | Credential the server authenticates with. | Yes |
Read-only SQL access to Postgres — let your assistant inspect schemas and answer questions from real data.
Manage your whole Supabase project in conversation — database, auth, storage, Edge Functions and branches.
Query, modify and analyse local SQLite databases in conversation — the fastest way to chat with a data file.
Metabase ships its own MCP endpoint — search your BI content, build and run queries, and save questions and dashboards without leaving the chat.
Official MongoDB server covering data, schemas and Atlas management — from find queries to spinning up clusters.
Serverless Postgres with database branching — point your assistant at Neon and let it work on disposable copies.