finance-mcp-server
It is a local-first personal finance MCP server that syncs bank data via SimpleFIN (or imports Rocket Money CSV) into SQLite and exposes analytics tools for Claude to answer spending questions.
Sync live bank accounts and balances via SimpleFIN (link, sync, disconnect, real-time balances/net worth)
Import Rocket Money CSV exports idempotently, deduping by stable hash
Search transactions by date, category, merchant, amount, or flow
View spending by category, data overview, and merchant history with spend summaries
Detect subscriptions and recurring charges, flagging price hikes
Forecast cash flow over 7–90 days with a low-point warning
Simulate debt payoff plans using avalanche, snowball, or compare strategies
Add/list/remove merchant→category rules to recategorize past and future transactions
Run a local HUD dashboard showing net worth, balances, category spending, subscriptions, and cash-flow projection
Keep data local: only question answers leave your machine
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-mcp-serverWhat did I spend on dining out 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-server
Your personal finance tracker as an MCP server. Sync your bank via SimpleFIN — or backfill from a CSV — into a local SQLite database and ask Claude about it: spending, subscriptions, cash flow, merchant history, debt payoff. Everything stays on your machine; the only thing that leaves is the answer to a question you asked.

The bundled HUD (npm run hud) rendering a synthetic demo dataset — net worth,
per-account balances, category spending, subscription price-hike flags, and a
30-day cash-flow projection with the low point marked.
The analytics engine in src/core/ is pure, dependency-free TypeScript,
kept separate from the MCP and storage layers so a future app can share
the same core.
Setup
npm install
npm run buildRelated MCP server: goetta-finance
Get your data in
Live bank sync (SimpleFIN) — recommended
The primary data source. Live account balances and ongoing transaction sync via SimpleFIN Bridge (read-only bank aggregation, ~$15/yr) — no CSV and no specific budgeting app required. Get a one-time setup token from bridge.simplefin.org (My Account), then:
npm run link -- "<paste-setup-token>"This claims the token into a durable access URL stored locally in
data/finance.db (it never leaves your machine) and runs an initial 365-day
sync. After that, balances are live — finance_sync (or just ask Claude to
sync) pulls new transactions. You can also link from within Claude via the
finance_link_bank tool, but the CLI keeps the token out of the chat
transcript. The database lives at data/finance.db (override with the
FINANCE_DB_PATH env var).
Optional: Rocket Money CSV backfill
Purely optional — SimpleFIN alone runs the whole tracker. If you're coming from Rocket Money, you can backfill history from before your bank's sync window. Export from Rocket Money (Settings → Export Data → CSV), then:
npm run import -- "C:/path/to/rocket-money-export.csv"Re-running with an updated export is safe — rows dedupe by a stable hash, so only genuinely new transactions are added.
Local HUD (dashboard)
A glanceable dashboard that reads finance.db fresh on every load — net
worth + account balances, this month's spending by category, subscriptions
with price-hike flags, and a 30-day cash-flow sparkline with the low point
marked. Fully offline (no CDN, no external calls); localhost only.
npm run hud # → http://localhost:4321 (Ctrl+C to stop)Leave it running and bookmark it; it self-refreshes every 2 minutes and
re-reads the DB, so once your bank is linked the balances stay current.
Override the port with HUD_PORT.
Use it with Claude
Claude Desktop, one-click (.mcpb) — the easiest path. Grab
finance-mcp.mcpb from the latest release (or build it
yourself, below), then drag it onto Settings → Extensions in Claude Desktop.
It'll ask for a Database file path — leave the default for a fresh store, or
point it at an existing finance.db to reuse that data. The bundle is
self-contained (bundled Node deps incl. the native SQLite binary) and, being
compiled, is win32-x64 only for now; on other platforms use the manual
config below after npm install && npm run build.
Build the .mcpb yourself:
npm install && npm run build
npm i -g @anthropic-ai/mcpb # the official packer
npm prune --omit=dev # ship prod deps only (do this in a copy, or re-`npm install` after)
mcpb pack . finance-mcp.mcpbmanifest.json at the repo root defines the bundle. It ships no data — the
SQLite file (and the SimpleFIN credential inside it) always lives at the external
path you configure, never in the bundle.
Claude Desktop, manual — add to claude_desktop_config.json:
{
"mcpServers": {
"finance": {
"command": "node",
"args": ["/absolute/path/to/finance-mcp-server/dist/index.js"],
"env": { "FINANCE_DB_PATH": "/absolute/path/to/finance-mcp-server/data/finance.db" }
}
}
}Claude Code — claude mcp add finance -- node /absolute/path/to/finance-mcp-server/dist/index.js
Then ask things like:
"What did I spend on gas last quarter?"
"List my subscriptions and flag any price hikes."
"How much have I paid Amazon over the last year?"
"Forecast my cash flow for the next 30 days starting from $1,200."
"Given these balances and APRs, avalanche vs snowball — which saves more?"
Tools
Tool | What it does |
| Import a Rocket Money CSV (idempotent) |
| Count, date span, per-category totals |
| Filter by date/category/merchant/amount/flow |
| Inflow/outflow by category over a range |
| Recurring charges + price-hike flags |
| N-day projection with low-point warning |
| Every charge from a merchant + summary |
| Avalanche/snowball simulation |
| Connect a bank via a SimpleFIN setup token |
| Live per-account balances + net worth |
| Pull new transactions + refresh balances |
| Forget the SimpleFIN connection |
| Map a merchant substring → category (recategorizes matches) |
| List rules + re-apply them across the store |
| Delete a rule |
Fixing miscategorized transactions
CSV history carries Rocket Money's own categories, but transactions synced live from SimpleFIN only have raw bank descriptors, so many land in other. Fix them with rules — just tell Claude, e.g. "categorize anything from Menards as shopping." Each rule matches a case-insensitive substring against the merchant name / descriptor, recategorizes all matches immediately (past and future), and sticks for every later import/sync.
Privacy
data/ and all *.csv files are gitignored. Real transaction history is never
committed and never sent anywhere except when you ask Claude a question that
requires reading it. The screenshot above is generated from synthetic data.
License
MIT
Available Tools
15 toolsfinance_add_category_ruleAdd Category RuleAIdempotent
Create a rule that assigns a category to any transaction whose merchant name or bank descriptor contains a given substring — and immediately recategorize all matching transactions (past and future imports/syncs honor it too). Use this to clean up transactions stuck in 'other'. Match is case-insensitive. Args: match (substring, e.g. 'menards'), category. Returns how many transactions were recategorized. Example: {match:'robinhood', category:'transfers'}.
| Name | Required | Description | Default |
|---|---|---|---|
| match | Yes | Substring to match on merchant name / descriptor (case-insensitive) | |
| category | Yes | Category to assign to matches |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses that the rule applies immediately to past and future transactions, is case-insensitive, and returns a count of recategorized transactions. Annotations already indicate idempotent and non-destructive, and description aligns with these.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single paragraph, front-loaded with the action, then details and example. Every sentence adds value with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 2 parameters, no output schema, and adequate annotations, the description fully covers purpose, behavior, usage, and provides an example, making it complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Both parameters have descriptions in the schema, but the description adds context (case-insensitive matching) and an example that clarifies usage beyond schema definitions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool creates a rule that assigns a category to transactions matching a substring, and distinguishes from sibling tools like finance_list_category_rules and finance_remove_category_rule.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says 'Use this to clean up transactions stuck in other' and provides a concrete example, but does not explicitly state when not to use the tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
finance_balancesReal-Time BalancesAIdempotent
Live per-account balances and net worth via SimpleFIN (fetched fresh on each call, then cached). Credit-card and loan balances are shown as positive amounts OWED and subtracted from net worth. If the live fetch fails, returns the last cached balances with a note. Requires finance_link_bank first. No args. Returns { accounts: [{name, institution, type, balance, currency, as_of}], assets, liabilities, net_worth, live }.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses key behaviors: fresh fetch per call with caching, sign convention for credit/loan balances, fallback to cached data with note. No annotation contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences covering purpose, source, caching, sign convention, error handling, and return structure. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given zero parameters, no output schema, the description provides a detailed return structure and error handling. Fully adequate for an agent to use correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters; description explicitly notes 'No args.' Schema coverage is 100%, so description adds value by confirming no input needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it returns live per-account balances and net worth via SimpleFIN. Differentiates from sibling tools by specifying real-time nature and caching behavior. No ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
States prerequisite (requires finance_link_bank first) and fallback behavior when live fetch fails. Could explicitly mention when not to use among siblings, but overall clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
finance_cash_flow_forecastCash Flow ForecastARead-onlyIdempotent
Project cash flow over the next N days from detected recurring bills (outflows) and recurring income (inflows, cadence-aware). Args: starting_balance (current available cash; default 0), window_days (7-90, default 30). Returns a day-by-day projection with the running balance and a flag for the lowest point. Note: starting_balance isn't in the CSV — pass your real current balance for an accurate low-point.
| Name | Required | Description | Default |
|---|---|---|---|
| window_days | No | ||
| starting_balance | No | Current available cash to project from |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, but the description adds behavioral details: returns day-by-day projection, running balance, and a flag for the lowest point. It also mentions that starting_balance isn't in the CSV, which is useful context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two well-structured sentences plus a note. Every sentence is meaningful, front-loaded with purpose, and no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (2 optional parameters, no output schema), the description sufficiently explains purpose, parameters, return structure, and a key limitation. It is complete for an agent to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 50% (only starting_balance has description). The description reinforces parameter meanings and adds the important clarification that starting_balance is not present in the CSV, which is not in the schema. This adds value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the tool projects cash flow over N days using recurring bills and income. The verb 'project' and resource 'cash flow' are specific, and the description distinguishes it from siblings like finance_spending_by_category or finance_debt_payoff_plan.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides a key usage guideline about passing a real starting_balance for accuracy. While it doesn't explicitly say when not to use it or name alternatives, the context is clear and the note adds practical value.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
finance_data_overviewData OverviewARead-onlyIdempotent
Summarize what's in the store: total transaction count, date span, last import time, and per-category inflow/outflow totals across all history. Call this first to know what data is available. No args.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and idempotentHint=true. The description adds value by detailing the exact summary content (transaction count, date span, last import time, per-category totals), going beyond what annotations provide. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences: first describes the output, second gives usage guidance and notes no arguments. No extraneous words, front-loaded with purpose. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given zero parameters, full annotations, and a clear description of return content, the description is complete. It lacks an explicit output schema but sufficiently explains what the tool returns. Sibling tools are diverse, but the overview tool's purpose is well-covered.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters, so schema coverage is effectively 100%. With no parameters, the description has no need to add parameter details, and the baseline score of 4 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool summarizes store data including transaction count, date span, last import time, and per-category inflows/outflows. It uses the verb 'summarize' and specifies the resource, distinguishing it from sibling tools like finance_search_transactions or finance_spending_by_category.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says 'Call this first to know what data is available', providing clear guidance on when to use it. However, it does not explicitly mention when not to use it or list alternatives, missing a point for full marks.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
finance_debt_payoff_planDebt Payoff PlanARead-onlyIdempotent
Simulate a debt-payoff plan given a list of debts and a monthly budget. Strategy 'avalanche' (highest APR first) or 'snowball' (smallest balance first), or 'compare' to run both and show interest/time saved. Debts are provided by you (not read from the CSV). Args: debts: [{id, name, balance, apr, minPayment}], monthly_budget, strategy. Returns the plan(s): months to debt-free, total interest, debt-free date, per-debt payoff month.
| Name | Required | Description | Default |
|---|---|---|---|
| debts | Yes | Debts to pay off | |
| strategy | No | compare | |
| monthly_budget | Yes | Total dollars/month available for all debt payments |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate read-only, idempotent, non-destructive. The description adds that it simulates and returns computed metrics (months to debt-free, total interest, date, per-debt payoff). No contradictions, and it provides sufficient behavioral context beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with clear structure: first sentence states purpose and strategy options, second sentence clarifies inputs and outputs. No redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simulation tool with 3 parameters, the description covers all inputs (debts, monthly_budget, strategy) and outputs (months, interest, date, per-debt payoff). No output schema exists but return values are described. Missing error handling but acceptable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 67%, but the description clarifies that debts are user-provided and explains each strategy's meaning (avalanche=highest APR, snowball=smallest balance). It adds value by explaining the strategy enum beyond the enum values.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool simulates a debt-payoff plan with given debts and monthly budget, specifying strategies and that debts are user-provided. It distinctly separates from sibling tools which focus on different finance functions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use (simulate payoff plans) and that debts are provided by the user (not read from CSV), indicating it's for manual scenario testing. It does not explicitly exclude alternative tools but sibling tools are unrelated, so no confusion.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
finance_disconnect_bankDisconnect BankADestructiveIdempotent
Forget the SimpleFIN connection (clears the stored access URL). Imported transactions and cached balances are kept. No args.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations (destructiveHint=true, idempotentHint=true), the description adds that imported transactions and cached balances are retained, which is important behavioral context for the agent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences clearly state the action and its effects, with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no parameters and no output schema, the description fully explains what the tool does and what is preserved, meeting all informational needs.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, and schema coverage is 100%, so the description's note of 'No args' provides no additional meaning; baseline score of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool forgets the SimpleFIN connection and clears the stored access URL, distinguishing it from the sibling tool finance_link_bank which presumably creates a connection.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied by the name and description (use to disconnect a bank), but no explicit guidance on when to use versus alternatives or prerequisites is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
finance_import_csvImport Rocket Money CSVAIdempotent
Import a Rocket Money transaction CSV export into the local store. Idempotent: re-importing the same or an updated export dedupes by a stable row hash, so only genuinely new transactions are added. Args: path (absolute path to the .csv). Returns counts (parsed/inserted/skipped), the date span, and any parsing warnings.
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Absolute path to the Rocket Money CSV export |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Adds value beyond annotations: explains idempotency with 'dedupes by a stable row hash' and details return values (counts, date span, warnings). No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three concise sentences, front-loaded with purpose, no unnecessary words. Efficient and clear.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite no output schema, description fully covers return structure and idempotency behavior. Tool is simple (1 param), and description provides all needed context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Only one parameter, 'path', fully described in schema. Description merely restates the schema. Baseline 3 as per rule.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states 'Import a Rocket Money transaction CSV export into the local store', providing a specific verb and resource. Among siblings (finance_data_overview, etc.), none perform CSV import, so it is well-distinguished.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explains idempotency and the effect of re-importing, which guides usage. No explicit when-not-to-use or alternative tools, but given the sibling list, it is clear this is the only import tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
finance_link_bankLink Bank (SimpleFIN)A
Connect a bank via SimpleFIN Bridge for real-time balances and ongoing transaction sync. Get a one-time setup token from bridge.simplefin.org (My Account → generate a token) and pass it here. Claims the token into a durable access URL stored locally, then runs an initial 365-day sync. Idempotent transactions (dedupe by provider id). Args: setup_token. Returns account balances + import counts.
| Name | Required | Description | Default |
|---|---|---|---|
| setup_token | Yes | One-time SimpleFIN setup token (base64) from bridge.simplefin.org |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description claims the tool is idempotent ('Idempotent transactions (dedupe by provider id)'), but the annotations explicitly set idempotentHint: false, creating a direct contradiction. This severely undermines the agent's ability to reason about behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Very concise and front-loaded: first sentence states purpose, then token acquisition, then tool actions, then idempotency, then args and returns. Every sentence earns its place with no fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one parameter and no output schema, the description covers the token source, idempotency, side effect (durable URL), initial sync duration, and return values. Minor gap: does not explain what 'import counts' means, but sufficient for an AI.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already describes the setup_token parameter with coverage 100%. The description adds value by specifying how to obtain the token (link to website, account steps) and its format (base64), which aids correct usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description explicitly states 'Connect a bank via SimpleFIN Bridge for real-time balances and ongoing transaction sync', clearly defining the verb and resource, and differentiating from sibling tools like finance_import_csv and finance_search_transactions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides concrete instructions for obtaining the token ('Get a one-time setup token from bridge.simplefin.org (My Account → generate a token)') and explains that it creates a durable access URL and runs an initial sync. However, it does not explicitly exclude other tools or state when not to use it, which would be helpful.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
finance_list_category_rulesList Category RulesAIdempotent
List all merchant→category rules (most specific first) and re-apply them across the whole store, returning how many transactions changed. Call after editing rules to resync. No args.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate idempotentHint=true and destructiveHint=false. Description adds that re-applying rules modifies transaction categories and returns a count, which is consistent and adds context beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no wasted words. Front-loaded with the core action, then usage guidance. Perfectly concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given zero parameters, no output schema, and annotations covering safety, the description fully explains behavior and usage context. No gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters, schema coverage 100%. Description confirms 'No args.' Baseline for 0 parameters is 4; no additional guidance needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it lists and re-applies merchant→category rules, returning count of changed transactions. Distinguishes from sibling tools like add/remove category rules.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states 'Call after editing rules to resync,' giving clear guidance on when to use. Does not explicitly mention when not to use, but siblings cover alternative actions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
finance_list_subscriptionsList Subscriptions & Recurring ChargesARead-onlyIdempotent
Detect recurring charges (subscriptions, memberships, bills) from transaction history using merchant-key normalization and cadence analysis. Flags price hikes vs the prior baseline. Args: none (analyzes all history). Returns { totals: {monthly, annual, count, hikes}, subscriptions: [{label, category, cadence, lastAmount, monthlyCost, occurrences, lastDate, nextDate, daysUntilNext, priceHike?}] }.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only and idempotent. The description adds valuable behavioral context: merchant-key normalization, cadence analysis, price hike flagging, and full return structure. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Extremely concise: two sentences plus a detailed return type snippet. No wasted words, front-loaded with key action.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Fully complete for a no-parameter tool: describes what it does, how it works, and returns a detailed structure. No output schema, so the description carries the full burden, which it meets.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist (0 params, 100% schema coverage). Baseline 4 is appropriate; the description explicitly states 'Args: none'.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool detects and lists recurring charges from transaction history using specific analysis methods. It distinguishes itself from sibling tools like finance_search_transactions or finance_spending_by_category by focusing specifically on subscriptions and recurring charges.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains it analyzes all history with no args, implying it's the go-to for subscriptions. It lacks explicit exclusions or comparisons to alternatives, but the purpose is clear given the sibling set.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
finance_merchant_historyMerchant HistoryARead-onlyIdempotent
Every charge from a given merchant (substring match on name/descriptor), with a spend summary. Useful for 'how much have I paid X' and spotting creep. Args: merchant (required), from/to (optional). Returns { merchant, count, total_spent, total_received, first_date, last_date, average, transactions: [...] }.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | End date inclusive, YYYY-MM-DD | |
| from | No | Start date inclusive, YYYY-MM-DD | |
| merchant | Yes | Merchant name or descriptor substring, e.g. 'amazon' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, assuring safe read-only behavior. The description adds valuable behavioral details: substring matching on name/descriptor and the specific return fields (merchant, count, total_spent, etc.), which go beyond annotations without contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is only two sentences, front-loaded with the main action and outcome. Every word is useful, with no repetition or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple query tool with 3 params and known schema, the description covers input, output structure, and use cases. It could mention potential limitations (e.g., pagination or data range), but overall it provides sufficient context for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers all 3 parameters with descriptions. The description adds that merchant is required and from/to are optional, and clarifies substring match for merchant. This adds some meaning beyond the schema but does not fully compensate for missing details (e.g., date format validation already in schema).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists every charge from a given merchant with a spend summary, specifying substring matching on name/descriptor. It distinguishes from siblings like finance_search_transactions (broader search) or finance_spending_by_category (category-level) by focusing on a single merchant.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit use cases ('how much have I paid X' and 'spotting creep'), which helps the agent determine when to use this tool. However, it does not mention alternatives or when not to use it, leaving some ambiguity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
finance_remove_category_ruleRemove Category RuleADestructiveIdempotent
Delete a category rule by its exact match string. Transactions it already recategorized keep their current category (rules don't store the original). Args: match. Returns whether a rule was removed.
| Name | Required | Description | Default |
|---|---|---|---|
| match | Yes | The exact match string of the rule to remove |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate destructive and idempotent behavior. The description adds context: transactions already recategorized are not reverted, and it returns a boolean indicating removal. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no redundant information. The purpose is front-loaded, and every sentence provides essential details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite no output schema, the description explicitly states the return value. Side effects and parameter semantics are covered. The tool is simple and the description is fully adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The sole parameter 'match' is fully defined in the schema with description. The description only mentions 'Args: match' without adding new information, meeting the baseline for 100% schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Delete'), the resource ('category rule'), and the method ('by its exact match string'). It differentiates from sibling tools like 'add_category_rule' and 'list_category_rules' by specifying deletion and exact matching.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for removing a rule by its match string but does not explicitly state when to use it versus alternatives. It mentions a side effect (transactions keep categories) but lacks guidance on when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
finance_search_transactionsSearch TransactionsARead-onlyIdempotent
Search transactions with filters. All optional; combine freely. Returns newest-first, paginated. Amounts are signed (positive = money in, negative = money out). Args: from/to (YYYY-MM-DD), category, merchant (substring on name/descriptor), min_amount/max_amount (by absolute value), flow ('in'|'out'|'all'), limit (1-500, default 100), offset. Returns { total, count, offset, has_more, transactions: [{id, txn_date, amount, description, category, account, institution}] }.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | End date inclusive, YYYY-MM-DD | |
| flow | No | Money in, out, or all | all |
| from | No | Start date inclusive, YYYY-MM-DD | |
| limit | No | ||
| offset | No | ||
| category | No | Filter to one spending category | |
| merchant | No | Substring match on merchant name / bank descriptor | |
| max_amount | No | Maximum absolute amount | |
| min_amount | No | Minimum absolute amount |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so agent knows it's safe. Description adds key behavioral traits: newest-first pagination, signed amounts, and return structure. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence paragraph is front-loaded with purpose and flexibility. Every sentence adds value, no redundancy. Very efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite no output schema, the description fully details the return object (total, count, offset, has_more, transactions fields). Covers ordering, pagination, and signing. Complete for a search tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 78%, and the description adds extra context like absolute value filtering for amounts and substring matching for merchant. It succinctly explains each parameter's semantics beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states 'Search transactions with filters' and lists specific filterable attributes. Distinguishes from siblings as it is the only general transaction search tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Indicates all filters are optional and combinable, implying broad applicability. However, does not explicitly advise when to use alternatives like finance_spending_by_category or finance_merchant_history, which are listed as siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
finance_spending_by_categorySpending by CategoryARead-onlyIdempotent
Total inflow and outflow grouped by category over an optional date range (defaults to all history). Sorted by outflow descending. Args: from/to (YYYY-MM-DD). Returns { range, categories: [{category, inflow, outflow, count}], total_outflow, total_inflow, net }.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | End date inclusive, YYYY-MM-DD | |
| from | No | Start date inclusive, YYYY-MM-DD |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the tool as read-only, idempotent, and non-destructive. The description adds behavioral details: default date range behavior, sorting order, and the exact return structure. This enhances transparency beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that efficiently conveys the purpose, parameters, and output structure. Every element is necessary, and the critical information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only aggregation tool with two optional parameters and no output schema, the description fully specifies the return format including the list of categories with fields and total values. No gaps remain.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with both parameters described. The description only repeats the format (YYYY-MM-DD) and confirms they are optional, adding no new semantic meaning beyond the schema. Baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool groups inflow and outflow by category over an optional date range, sorted by outflow descending. This distinguishes it from siblings like finance_search_transactions (detailed search) or finance_data_overview (broader overview), providing a specific verb and resource.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description specifies that the date range is optional (defaults to all history) and that results are sorted by outflow descending. While it doesn't explicitly compare to alternatives, the context is clear enough for an agent to infer when to use this tool for aggregated category data.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
finance_syncSync Bank (SimpleFIN)A
Pull new transactions and refresh balances from SimpleFIN. By default fetches from the day after the latest transaction already in the store (so it won't re-pull or double-count history from your CSV) — pass days_back to force a wider window (e.g. 365 for a full refresh). Transactions dedupe by provider id. Requires finance_link_bank first. Args: days_back (optional, 1-730). Returns { accounts, newTransactions, store_span }.
| Name | Required | Description | Default |
|---|---|---|---|
| days_back | No | Override: fetch this many days back instead of since the last stored transaction |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses side effect (refreshing balances), deduplication by provider id, and default non-re-pull behavior. Annotations do not provide such details, so description adds valuable transparency. No contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences plus args/return notes, no fluff. Front-loaded with purpose, then default behavior, dedup, prerequisite, and structured args/return summary.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers purpose, default vs override, deduplication, prerequisite, and return fields (accounts, newTransactions, store_span) despite no output schema. Missing: behavior when no prior transactions exist, but overall sufficient for a simple tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers 100% of parameters with description. The tool description adds context: default behavior (since last stored transaction) and an example (365 for full refresh), which goes beyond the schema's 'Override' description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the tool pulls new transactions and refreshes balances from SimpleFIN. Distinguishes from sibling tools like finance_import_csv (CSV import) and finance_balances (just balances) by specifying the source and action.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explains default incremental behavior (from day after latest transaction) and when to use days_back for full refresh. Mentions prerequisite finance_link_bank. Does not explicitly state when not to use, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
15 tool updates
v0.1.0- First observed
finance_add_category_rule - First observed
finance_balances - First observed
finance_cash_flow_forecast - First observed
finance_data_overview - First observed
finance_debt_payoff_plan - First observed
finance_disconnect_bank - First observed
finance_import_csv - First observed
finance_link_bank - First observed
finance_list_category_rules - First observed
finance_list_subscriptions - First observed
finance_merchant_history - First observed
finance_remove_category_rule - First observed
finance_search_transactions - First observed
finance_spending_by_category - First observed
finance_sync
TDQS
Scored across 15 tools
Each tool targets a distinct operation in the personal finance domain: import, search, analysis (categories, subscriptions, cash flow, merchant history), debt planning, bank connectivity, and rule management. No two tools have overlapping purposes; an agent can easily differentiate them.
All tool names follow the consistent snake_case pattern 'finance_verb_noun' (e.g., finance_import_csv, finance_search_transactions, finance_link_bank). This uniformity makes the tool set predictable and easy to navigate.
With 15 tools, the server is well-scoped for a personal finance assistant. It covers data import, querying, analysis, planning, and bank integration without being overwhelming. Each tool serves a clear purpose.
The tool set covers core workflows: importing, searching, categorizing (via rules), analyzing spending, detecting subscriptions, forecasting cash flow, planning debt payoff, and syncing bank transactions. Minor gaps exist, such as the lack of direct transaction editing or deletion, but these can be worked around.
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 Connectors
Personal finance for AI agents — onboard, import statements, categorize & budget over MCP.
- Era ContextOAuthapp.era
Personal finance, bank account, and shared memory connector for Claude, ChatGPT, Gemini Spark & more
An MCP server that provides read access to your cloud storage providers, bank accounts and more.
The Ramp MCP server enables users to securely connect Ramp with AI assistants like ChatGPT and Claude to query financial data and take actions using natural language. It transforms Ramp's developer API into a SQL interface that LLMs can query, allowing admins to analyze spend trends, identify cost savings, and run complex SQL analyses on comprehensive datasets (transactions, purchase orders, vendors, users), while all users can manage cards, view transactions, request reimbursements, and get expense policy answers.
Related MCP Servers
- FlicenseBqualityDmaintenanceA personal MCP server that gives Claude native access to YNAB budget data.46-
- AlicenseNot gradedqualityAmaintenanceA local-first MCP server that connects SimpleFIN bank accounts to Claude, storing data in a local DuckDB file and providing a web dashboard.1MIT
- FlicenseNot gradedqualityCmaintenanceAn MCP server that lets you log and query your own spending through natural conversation with Claude, instead of a spreadsheet or app.6-
- FlicenseAqualityCmaintenancePersonal finance MCP server that integrates Plaid bank data with local SQLite memory for conversational budgeting, goal tracking, and transaction management.15-