local-budget
The local-budget server is a local-first, agent-first personal finance tool with deterministic read/write tools for managing your budget (no AI inference). It offers:
Spending Analysis: Get monthly summaries, category/subcategory breakdowns, top merchants, transaction lists with filters (category, merchant substring, month, days lookback, min amount), compare periods, detect recurring charges and anomalies, track monthly trends, and run custom read-only SQL queries (with PII columns blocked).
Income Tracking: View income by source and drill into income transactions.
Categorization & Merchant Management: Pin merchants to categories, set categories for individual transactions, manage the review queue, and list the full category vocabulary.
Budgeting: Set/clear monthly budget limits per category/subcategory, set expected income, mark categories as floor (more spending desired) or ceiling (less spending desired), get budget overview with over-budget flags, and receive deterministic savings insights.
Amazon Integration: Get item-level breakdowns of Amazon charges, check coverage of item-level data, propose and apply splits across categories.
Data Import & Conflict Resolution: Import bank statements (QFX, OFX, CSV) and resolve open import conflicts.
Reporting: Generate visual PDF reports with charts and save brief summaries to local markdown files.
Notes & Preferences: Save, list, and delete durable user notes.
Category Management: Add custom categories, remove categories by merging, mark/unmark floor categories.
Recurring Charges & Subscriptions: Detect subscription-like charges and split them into individual subcategories.
Privacy: All data stored locally in a SQLite database; PII like payee/memo is masked from agents.
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., "@local-budgetHow much did I spend on groceries this 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.
local-budget
Brand: PRESS v0.7.2 — The report's colour and type tokens are generated from the
press skill, not maintained here. The token blocks marked
press:tokens are generated; edit press/brand/tokens.json and re-emit instead.
A local-first, agent-first personal spending agent for your bank/financial
statements. Your data stays in one
local data/budget.db on your own machine — full account numbers and every
transaction. You don't click through an app to understand your money; you talk
to it from a Claude Code session pointed at this repo, through a small MCP server
and a set of no-code skills. The server runs no inference — it just exposes
deterministic, column-guarded tools; the reasoning happens in your Claude Code
session under your own subscription auth.
How it works
Import. Drop a bank statement export (
.qfx/.ofx/.csv) in your inbox and runbudget intake(orbudget import <file>). Account numbers are masked at import time; the raw transaction is stored once indata/budget.db.The MCP server. The committed
.mcp.jsonwires upuv run budget-mcp— a standalone stdio MCP server that exposes 32 deterministic tools (18 read, 14 write) overbudget.db. Every tool runs behind a connection-scoped, column-level SQLite authorizer (db.agent_connect): imported facts are immutable, and account numbers, raw OFX, and raw payee/memo are read-denied — the sanitizedmerchant_normis the agent's only merchant text. Read tools return a{data, rendered}pair so the agent can print an exact, deterministic markdown block instead of paraphrasing numbers.The skills. Eight no-code
budget-*skills (under.claude/skills/) orchestrate those tools in your session — grounded in a sharedbudget-analystpersona that enforces "never invent a number, print the tool'srenderedblock verbatim, confirm before any write."The dashboard (optional).
budget servestarts a loopback-only web dashboard athttp://127.0.0.1:8770— a deterministic visual glance at your spending. It runs no Claude inference.
Open a Claude Code session in this repo and the MCP tools (.mcp.json) and the
budget skills (.claude/skills/) load automatically. Then just ask:
"How much did I spend on groceries this month?", "Categorize my unreviewed
merchants," "Give me a monthly brief."
Related MCP server: FinLynq
Privacy
One local DB. Everything lives in
data/budget.db, which is gitignored and never committed.Account numbers masked at import and read-denied to the agent; raw payee/memo read-denied by the authorizer — the agent sees only the sanitized
merchant_norm.The agent can never alter an imported fact. The write authorizer permits only the derived category columns and the app-config tables — not the imported transaction rows. No tool can rewrite history.
The dashboard is loopback-only by default; binding a non-loopback host requires a 32+ char
LOCAL_BUDGET_API_TOKEN(see.env.example).
Quick start
uv sync
# import a bank statement export
uv run budget import ~/Downloads/statement.qfx
# …or drop exports in your inbox and run:
uv run budget intake
# then open a Claude Code session in this repo and ask your money questions —
# the budget skills + MCP tools auto-load from .mcp.json and .claude/skills/.For the optional visual dashboard:
uv run budget serve --open # http://127.0.0.1:8770 (loopback-only)Run uv run budget --help for the full CLI (import, intake, report, reconcile,
recurring, limits, subscriptions, backup, …).
Skills
Skill | What you ask it |
| first-run setup — expected income, an overview of where you stand |
| spending questions — categories, top merchants, "how am I doing" |
| a full month wrap-up — summary, trends, anomalies, recurring |
| pin merchants to categories, clear the review queue |
| set and check monthly category/subcategory limits |
| income by source and the underlying transactions |
| detected recurring charges, split into their own subcategories |
| review and resolve import conflicts |
All eight reference the shared budget-analyst persona; visual reports follow
the shared budget-visualizer discipline.
Evals
Skills are tested like code. scripts/eval.py runs a deterministic mock tier
(replays committed transcripts, no spend) in CI, plus an opt-in live tier
(--live, drives claude -p) that is cost-capped for when you want to verify
real model behavior.
What's committed vs. local
Committed (the app — runs anywhere) | Local only (gitignored — your data/host) |
|
|
|
|
|
|
Install the commit guard so personal data can't slip into git:
ln -sf ../../scripts/secret-scan.sh .git/hooks/pre-commitRequirements
Python 3.12. MIT licensed (see LICENSE).
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 interaction with local Beancount accounting ledgers through structured tools for viewing accounts, balances, and transactions, as well as inserting/removing transactions and answering natural-language questions via BeanQuery. Provides deterministic, validated, and auditable financial data operations with offline-first functionality.1
- AlicenseBqualityAmaintenanceopen-source personal finance app with a first-party MCP server. 91 HTTP tools (OAuth 2.1 + DCR) and 87 stdio tools cover transactions, budgets, accounts, portfolio analytics, FX conversion, loans, subscriptions, goals, importers, and rules. Users self-host with Docker + PostgreSQL or use the managed cloud898AGPL 3.0
- FlicenseBqualityBmaintenanceEnables AI agents to manage personal finances with deterministic, grounded tools for cash-flow projection, drift detection, reconciliation, and Todoist integration. All figures trace back to a local SQLite database.55
- Flicense-qualityBmaintenanceMCP server for personal finance management. Enables natural language expense logging, budgeting, recurring charge detection, and statement import with deterministic local calculations.
Related MCP Connectors
Deterministic bank-statement parsing: messy CSV/OFX to clean categorized rows. In-memory only.
Personal finance by conversation: expenses, receipts, statement import, budgets, net worth.
TaxSort — Tollbooth-monetized MCP server for personal tax transaction classification
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/natejswenson/local-budget'
If you have feedback or need assistance with the MCP directory API, please join our Discord server