myfinance-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., "@myfinance-mcplog 24.50 eur on groceries at Lidl"
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.
MyFinance MCP
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.
Website: myfinance-mcp.com · Free while in beta · Built by Rteam
Quick Start
Already hosted and ready to use - just connect it to your MCP client:
https://myfinance-mcp.com/mcpOn Claude.ai: Customize → Connectors → + → Add custom connector → paste the URL → Connect. Leave the OAuth Client ID and Client Secret fields empty - filling them breaks sign-in.
On ChatGPT: Settings → Apps → Create app → paste the URL → choose OAuth → Create.
On first connect you sign in with Google or register with an email and password. Your data persists across reconnections.
Related MCP server: MCP Agent - AI Expense Tracker
Why
No app, no forms, no spreadsheet. "Spent 24.50 eur on groceries at Lidl" is the whole workflow.
Every number is computed in SQL. The server owns the data and the math; the AI reads the results, it never guesses arithmetic.
Any currency. Transactions keep their original currency; the FX rate to your base currency is frozen at transaction date, so history never rewrites itself.
Statements in one message. Drop a CSV/PDF export; hundreds of rows import in one call with idempotent deduplication, hand-logged twins merged, totals reconciled.
Personal vs business. Entity tag on accounts and transactions, filterable everywhere, included in CSV export for your accountant.
Dashboards in the chat. Budgets, trends, summaries and accounts render as interactive panels (MCP Apps) right in the conversation.
Tech Stack
Bun - runtime and package manager
Express - HTTP layer
MCP SDK - Model Context Protocol over Streamable HTTP (stateless)
OAuth 2.1 - PKCE + dynamic client registration, Google sign-in optional
Prisma + PostgreSQL - all money as
numeric, all stats as SQL aggregatesDocker - single container deployment
MCP Tools
Tool | Description |
| Record one purchase, bill or receipt (negative amount = refund) |
| Record income: salary, invoice, refund, interest |
| Move money between accounts, cross-currency supported; never counts as spending |
| Anchor an account's balance at a date; later flows compute from the snapshot |
| Bulk statement import (up to 500 rows/call): dedup by bank reference or derived key, twin merge, reconciliation check |
| Create a bank / card / cash / investment account with currency and personal/business entity |
| Rename an account or change its type, entity or main currency |
| Delete one money account (with its transactions after explicit confirmation) |
| Fold one account into another: move rows, de-duplicate both sides, rewrite transfers |
| All accounts with balances and net worth, converted to base currency |
| Period totals by category, merchant or month; expense or income breakdown, category drill-down and exclusions |
| List and filter raw transactions |
| Month-over-month spending trends and deltas |
| Monthly cap per category or overall |
| Live budget progress with days left; renders as a dashboard |
| Fix any field of an existing transaction, including its type (e.g. turn a cash withdrawal into a transfer); category fixes are remembered per merchant for future syncs |
| Delete one transaction by id |
| Bulk delete by ids |
| Base currency and timezone |
| Change base currency or timezone |
| Full CSV export (includes the entity column for accountant handoff) |
| Link a real bank via open banking (Enable Banking, EU/UK): list banks, start consent, status, per-account sync toggle, disconnect |
| Pull booked transactions and balances from the connected bank; incremental, transfer pairing, dedup-safe. Healthy connections also auto-sync server-side roughly daily |
| Link a ZenMoney account (international and .ru backends auto-detected) for read-only sync |
| Pull ZenMoney accounts and transactions; incremental, dedup-safe, keeps your manual edits |
| Permanently delete the user profile and ALL data (GDPR erasure) |
| Health and auth check |
MCP Apps
Four tools return an interactive dashboard (ui://myfinancemcp/dashboard) rendered directly in the chat on clients that support MCP Apps: budget rings, monthly trends, category summaries and the accounts/net-worth panel. Light and dark theme aware.
Security & Privacy
Receipt photos are parsed by YOUR AI client; images never reach this server.
Amounts, merchants and notes are never written to server logs (blind logs); telemetry stores event types and ids only.
OAuth 2.1 with PKCE, encrypted tokens, rate-limited sign-in.
All 27 tools carry MCP annotations (read-only and destructive ops flagged, connector tools marked open-world), so clients can gate confirmations correctly.
Bank access is strictly read-only: open banking consent via Enable Banking (the bank authenticates the user; we never see credentials), ZenMoney via the user's own API token. Session ids and tokens are stored AES-256-GCM encrypted.
CSV export and instant full deletion are tools, not support tickets.
Hosted instance: EU data residency, row-level security keyed to your account.
154 automated end-to-end checks (full OAuth flow, every tool, import dedup semantics, GDPR deletion) run in CI and as a hard deploy gate.
See SECURITY.md for the disclosure policy.
Self-hosting
MIT-licensed; runs anywhere Bun and Postgres run.
1. Postgres
Any PostgreSQL 15+ works. Supabase free tier is a good fit: create a project and copy the session pooler connection string (IPv4).
Apply the schema:
bun install
bunx prisma db push2. Environment variables
Variable | Description |
| Server port (default |
| Public URL of the server (OAuth issuer) |
| Postgres connection string |
| Bootstrap user email |
| Bootstrap user password hash (see below) |
| (optional) Google OAuth client ID for "Continue with Google" |
| (optional) Google OAuth client secret |
| (optional) Resend key for new-signup email notifications |
| (optional) Where signup notifications go |
| (optional) Verified sender for notifications |
| (optional) Bank auto-sync tick, default hourly (syncs connections >20h stale); |
Generate the password hash:
bun -e "console.log(await Bun.password.hash(process.argv[1]))" 'your-password'3. Run
docker compose up -d # uses the included Dockerfile, port 8788Put nginx (or any TLS-terminating proxy) in front and point BASE_URL at your domain. The static landing in site/ is optional - serve it from the same origin if you want one.
Development
bun install
cp .env.example .env # fill in your values
bun run dev # hot reload on :8788
bun run e2e # self-contained end-to-end suite (spawns its own server)
bun run lintThe e2e suite (154 checks) covers the full OAuth flow (discovery, dynamic registration, PKCE, refresh rotation), every tool, statement-import dedup semantics, ZenMoney sync against a stubbed Diff API, and GDPR deletion.
API Endpoints
Endpoint | Description |
| MCP endpoint (Bearer auth) |
| Health check |
| OAuth metadata discovery |
| Protected resource metadata |
| Dynamic client registration |
| OAuth authorization (sign-in page) |
| Token exchange |
| Google sign-in start (when configured) |
| Public aggregate counters (counts only, never amounts) |
License
MIT - Rteam FZE LLC
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-qualityDmaintenanceEnables users to track personal expenses through natural language interactions with comprehensive category support and financial summaries. Provides both local and remote MCP server options with SQLite storage for fast expense management operations.Last updated
- Alicense-qualityDmaintenanceEnables AI agents to manage personal expenses through natural language conversations. Supports adding, searching, and analyzing transactions with automatic categorization and financial insights.Last updated3MIT
- Flicense-qualityDmaintenanceA personal financial management tool that enables AI assistants to record transactions, check balances, and provide monthly financial summaries via the Model Context Protocol. It allows users to manage their expenses and income through natural language interactions using standardized MCP tools and resources.Last updated
- AlicenseAqualityDmaintenancePersonal expense tracker MCP server that enables tracking expenses, income, budgets, and savings goals through natural language.Last updated10MIT
Related MCP Connectors
Ask your AI about bank accounts, spending, debts, holdings, and investment activity.
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/alex-odoo/myfinance-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server