wallet-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., "@wallet-mcpList my accounts"
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.
wallet-mcp
An MCP server for the BudgetBakers Wallet REST API. Runs as a persistent HTTP service using MCP's Streamable HTTP transport — meant to be run as a long-lived background process (e.g. via systemd) that MCP clients connect to over the network, rather than a stdio subprocess a client spawns itself.
Covers the full Wallet API: Records (transactions), Accounts, Categories, Budgets, Labels, Standing Orders (recurring payments, read + delete only — creating/editing one requires the Wallet app), Goals (read-only), Record Rules (auto-categorization, read + delete only), and API usage stats.
Prerequisites
Node.js 18 or newer (
node --version)A BudgetBakers Wallet account on the Premium plan — the REST API isn't available on the free plan
An MCP client that supports Streamable HTTP transport (Claude Code, or any custom MCP client)
Setup
git clone https://github.com/kirikatiya/wallet-mcp.git
cd wallet-mcp
npm install
npm run buildGenerate an API token at https://web.budgetbakers.com/settings/rest-api — keep it secret,
don't commit it anywhere. Unlike a typical stdio MCP server, the token is not configured
on the server at all: each MCP client sends its own token per request via the standard
Authorization: Bearer <token> HTTP header, and the server forwards it straight through to
the Wallet API. This lets multiple callers/agents share one running instance, each using
their own Wallet account. (If you do want a single fixed token for every caller instead,
set WALLET_API_TOKEN in the server's environment — it's used as a fallback whenever a
request has no Authorization header.)
Running it
npm startBy default it listens on http://127.0.0.1:7691/mcp — loopback only, not reachable from
the network, since it's designed to be called by other processes/agents on the same
machine. Override with the WALLET_MCP_HOST / WALLET_MCP_PORT env vars if needed.
As a background service (systemd)
A ready-to-adapt unit is in systemd/wallet-mcp.service.example.
To install as a per-user service (no root required):
cp systemd/wallet-mcp.service.example ~/.config/systemd/user/wallet-mcp.service
# edit the paths inside to match where you cloned the repo
systemctl --user daemon-reload
systemctl --user enable --now wallet-mcp.service
loginctl enable-linger "$USER" # keeps it running after you log outCheck it's up: systemctl --user status wallet-mcp.service and curl -s -X POST http://127.0.0.1:7691/mcp -H 'Content-Type: application/json' -H 'Accept: application/json, text/event-stream' -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'.
⚠️ If you ever change the bind host to something other than 127.0.0.1 (e.g. to allow
access from other machines), put it behind a firewall/VPN — the server has no
authentication of its own beyond forwarding whatever Authorization header it receives.
Register with an MCP client
Claude Code
claude mcp add --transport http wallet http://127.0.0.1:7691/mcp \
--header "Authorization: Bearer <your_token>"Verify it's connected with claude mcp list, then ask Claude something like "list my
Wallet accounts" to confirm it can reach the API.
Other MCP clients
Point the client at http://127.0.0.1:7691/mcp using Streamable HTTP transport, and
configure it to send Authorization: Bearer <your_token> with each request — consult
your client's docs for where custom headers are set on an HTTP MCP server entry.
Tools
Tool | Description |
| List transactions — pagination + filters on account/date/category/label/note/payee/amount/type/state/source |
| Get one record by ID |
| Create up to 50 transactions |
| Patch up to 10 transactions ($clear, place, labelIds add/remove, transfer edits) |
| Delete up to 10 transactions |
| Check what references given records |
| List accounts |
| Get one account by ID |
| Create an account |
| Patch up to 10 accounts |
| Delete up to 10 accounts |
| Check what references given accounts |
| List categories (system + custom) |
| Get one category by ID |
| Create a custom category |
| Patch up to 10 categories |
| Delete up to 10 custom categories |
| Check what references given categories |
| List budgets |
| Get one budget by ID |
| Create a budget |
| Patch up to 10 budgets (limits, overrides, tracked accounts/categories/labels) |
| Delete up to 10 budgets |
| List labels/hashtags |
| Get one label by ID |
| Create a label |
| Patch up to 10 labels |
| Delete up to 10 labels |
| Check what references given labels |
| List recurring payments (read-only — create/edit needs the Wallet app) |
| Get one standing order by ID |
| List standing-order occurrences (due/paid/dismissed history) |
| Delete up to 10 standing orders |
| List savings goals (fully read-only) |
| Get one goal by ID |
| List auto-categorization rules (read + delete only) |
| Get one record rule by ID |
| Delete up to 10 record rules |
| Get REST API usage stats for the calling token |
Notes
Batch write endpoints (
POST/PATCH/DELETEwith multiple items) can return HTTP 207 with a mix of per-item successes and failures; that's returned as normal tool output, not an error.Wallet rate-limits at 300 requests/hour per token. Tool responses append a warning once the
X-RateLimit-Remainingheader drops to 5 or below.Filter parameters on
wallet_list_recordsaccept the API'sgte./lte./contains./contains-i.prefix syntax (e.g."gte.100"), or a plain value for exact match.Each MCP request is stateless: the server doesn't persist sessions between calls, so there's nothing to clean up if a client disconnects mid-conversation.
Troubleshooting
"No Wallet API token available" — neither the request's
Authorizationheader nor the server'sWALLET_API_TOKENenv var provided a token. Check your client is sending the header on every request, not just at connection time.HTTP 401/404 from the API with a token set — token is invalid, expired, or was revoked; generate a new one at https://web.budgetbakers.com/settings/rest-api.
HTTP 403 / a "Premium required" style message — the REST API needs an active Wallet Premium subscription.
HTTP 429 — you've hit the 300 requests/hour limit; wait for it to reset or reduce call frequency.
Client can't connect — confirm the service is actually running (
systemctl --user status wallet-mcp.serviceorcurlthe/mcpendpoint) and that the client is configured for Streamable HTTP, not stdio.
Development
npm run dev # tsc --watch
npm start # run the built serverLicense
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.
Latest Blog Posts
- 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/kirikatiya/wallet-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server