Personal finance: log expenses in plain language, track accounts, budgets and spending
en • ru
Model Context Protocol server for personal finance — log expenses in plain language, track accounts, deposits, budgets and spending, secured by OAuth.
Smart Money MCP puts your money ledger inside your AI assistant. Connect Claude, ChatGPT, Cursor, VS Code, or a CLI client to Smart Money, then say "log 4500 on a taxi yesterday from Kaspi" or ask "how much did I spend on food this month?" — the assistant writes to the same ledger the app reads.
https://smart-money.ink/mcpSmart Money MCP is a remote, OAuth-secured server. There is nothing to install locally. Add this to your MCP client config:
{
"mcpServers": {
"smart-money": {
"type": "http",
"url": "https://smart-money.ink/mcp"
}
}
}
One-click install:
CLI clients (Claude Code, Gemini CLI, Codex CLI) and manual snippets: see Supported clients.
taxi 4500 yesterday kaspi #trip is parsed into an amount, date, account, currency, tags and category. Amounts like 12k or 1.2m, dates like yesterday or 3 days ago, and account names in any script all resolve.#tag is created on the fly; a deleted one is restored instead of duplicated.27 tools. Reading and writing are separate tools — no confirm or dryRun flags — and each one carries a title plus readOnlyHint / destructiveHint annotations, so your client knows which calls deserve a confirmation prompt.
| Category | Tools |
|---|---|
| 👀 Previews (read-only) | preview_entry, preview_notifications, preview_interest — show the parse before anything is written |
| 💸 Transactions | quick_add, add_transaction, list_transactions, update_transaction, delete_transaction, import_notifications |
| 📊 Reporting | summary — income, expense, savings rate, categories, top merchants for a period |
| 🏦 Accounts | list_accounts, create_account, update_account, delete_account, accrue_interest |
| 🗂️ Categories | list_categories, create_category, update_category, delete_category |
| 🏷️ Tags | list_tags, create_tag, update_tag, delete_tag |
| 🎯 Budgets | list_budgets, create_budget, update_budget, delete_budget |
Deletion is soft: a transaction gets a deletedAt and drops out of balances and reports on every device, while its import key stays — so re-importing the same bank notification will not bring it back. An account or category still referenced by transactions cannot be deleted; the connector offers to archive it instead, so history never points at nothing.
For the exact, up-to-date set, run tools/list against https://smart-money.ink/mcp.
Smart Money is a paid service with a free trial. The connector reads and writes your real ledger, so it needs an active subscription or trial — there is no anonymous tier.
| Free trial | Subscription | |
|---|---|---|
| Price | $0 for 7 days, card required | $7.99 / month |
| Web app, sync, every connector tool | ✅ | ✅ |
Nothing is charged during the trial, and cancelling during it charges nothing. Cancel any time in Settings → Subscription. When a subscription lapses the app locks, but records are not deleted: they stay in your browser and can still be exported. Current terms: smart-money.ink/terms.
Call a tool without an active subscription and the tool result says so, pointing you at the app's settings.
~/.cursor/mcp.json.vscode/mcp.jsonclaude mcp add --transport http smart-money https://smart-money.ink/mcpgemini mcp add --transport http smart-money https://smart-money.ink/mcpcodex mcp add smart-money --url https://smart-money.ink/mcpFull per-client instructions: docs/setup.md.
This repository is also a Cursor plugin. It contributes one MCP server (smart-money) and no rules, skills, agents, or hooks.
.cursor-plugin/plugin.json ← plugin manifest
mcp.json ← the MCP server it contributes
assets/logo.svg ← plugin logo
There is nothing to configure. No API key or environment variable is required: the server advertises OAuth 2.1 metadata, the client registers itself dynamically, and the consent screen opens on first use.
Log as you go
"taxi 4500 yesterday kaspi #trip"
→ One transaction, parsed and saved: amount, date, account, tag. The preview tool can show the parse first.
Ask where the money went
"How much did I spend on food this month, and how does that compare to my budget?"
→ A category breakdown plus the budget's spent, remaining, and end-of-month forecast.
Deposits
"Post the interest due on my deposits."
→ Interest accrued daily on the actual balance, idempotent: running it twice posts nothing extra.
Bank notifications
(paste a batch of bank push notifications) "Turn these into transactions."
→ Parsed into transactions, with already-imported ones skipped.
More: docs/examples.md.
Auth is OAuth 2.1 with PKCE. Your assistant gets a token tied to your Smart Money account, and the connector reads and writes as you — row-level security and the subscription check apply exactly as they do in the web app. Discovery follows RFC 9728: an unauthenticated call to /mcp returns 401 pointing at https://smart-money.ink/.well-known/oauth-protected-resource/mcp, and the authorization server is found from there.
Tokens can be revoked at any time from the Smart Money app. OAuth flow details: docs/oauth.md. Data handling: smart-money.ink/privacy.
Common connection, OAuth, and tool-call errors: docs/troubleshooting.md.
Registry and directory listings, and how publishing works: docs/registries.md.
https://smart-money.ink/mcpMIT — see LICENSE.
Built by @ultraza4. Smart Money is a hosted personal-finance service; this repo is documentation and manifests for its public MCP server. Server source is not open.
This listing does not have a supported local package template. Use the maintainer’s documentation for its hosted endpoint, authentication, and client-specific setup. No install command has been inferred.