Read-only Monzo banking data through OAuth, with cached transaction search and spending analysis.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent ā or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag ā we're steadily working through the catalog.
š” Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Monzo MCP.
monzo_list_accountsList accounts with types and IDs
monzo_get_balanceCurrent balance and spend today
monzo_list_potsSavings pots and balances
monzo_syncSync transactions to local cache
monzo_list_transactionsList/filter cached transactions
monzo_search_transactionsSearch by merchant/payee/description/notes
MCP server for the Monzo banking API. Read-only access to accounts, balances, pots, transactions, and spending analysis - all through Claude Code or any MCP client.
Unlike other Monzo MCP implementations that use raw bearer tokens (which expire in 6 hours), this server handles full OAuth with automatic token refresh.
monzo_sync by hand| Tool | Description | Data source |
|---|---|---|
monzo_list_accounts | List accounts with types and IDs | Live API |
monzo_get_balance | Current balance and spend today | Live API |
monzo_list_pots | Savings pots and balances | Live API |
monzo_sync | Sync transactions to local cache | Live API -> SQLite |
monzo_list_transactions | List/filter cached transactions | Local cache (auto-syncs if stale) |
monzo_search_transactions | Search by merchant/payee/description/notes | Local cache (auto-syncs if stale) |
monzo_spending | Spending analysis with category breakdown | Local cache (auto-syncs if stale) |
This package is not on PyPI - the name belongs to an unrelated project. A container image is published instead; see Docker.
Go to developers.monzo.com and create an OAuth client:
http://localhost:6600/callbackThis opens your browser for Monzo OAuth. After authorizing, approve the login in your Monzo app within 5 minutes for full transaction history access (Monzo's SCA window).
On Windows the console script is at .venv\Scripts\monzo-mcp.exe.
In Claude Code, run monzo_sync to populate the local transaction cache. Do this immediately after auth to take advantage of the SCA window (up to 11 months of history).
Images are published to ghcr.io/partymola/monzo-mcp. Tags carry a v prefix (:vX.Y.Z), and :latest follows the most recent release.
The container needs a volume. Credentials and the transaction cache live under /data; with nothing mounted there, the container still starts and every tool reports that it is not configured, and anything you authorise is lost as soon as the container is replaced.
First register an OAuth client as described in Setup step 1 - auth prompts for the Client ID and secret, and there is no way to supply them later. The redirect URL is http://localhost:6600/callback, the same as a source install.
Authenticate once, into a named volume. Decide before you run this whether you want a bind mount instead - switching afterwards means authorising again:
The published port is needed only for this step, so the OAuth redirect can reach the container. Binding it to 127.0.0.1 keeps the callback listener off your network. No browser opens - the container has none - so copy the URL it prints. Then approve the login in your Monzo app within 5 minutes (see Monzo SCA window).
Then register the server, reusing the same volume:
-i is required - the server speaks JSON-RPC over stdin and stdout.
Sync straight away. The 11-month backfill closes 5 minutes after you approve in the Monzo app (see Monzo SCA window), and this route is longer than a source install - so call monzo_sync as soon as the server is registered. Miss it and you silently get 90 days instead, with no error.
To keep the files somewhere you can read them, use a bind mount instead of a named volume. The container runs as root and writes credentials owner-only, so without --user they end up root-owned:
Pass the same -v and --user to the server command. Create the directory first - --user against a named volume fails, because the volume initialises root-owned from the image.
All configuration is via environment variables (optional):
| Variable | Default | Description |
|---|---|---|
MONZO_MCP_CONFIG_DIR | <package>/config/ | Directory for OAuth credentials and tokens |
MONZO_MCP_DB_PATH | <package>/monzo.db | Path to SQLite transaction cache |
MONZO_MCP_CALLBACK_HOST | localhost | Interface the auth callback server binds to. The redirect URI is unaffected |
The container image sets the first two under /data, because the package-relative defaults resolve into the interpreter's lib directory there, which cannot be mounted. It sets the third to 0.0.0.0, because a published port arrives on the container's bridge interface and a localhost bind refuses it.
Credential files (created by monzo-mcp auth):
config/monzo_client.json - OAuth client ID and secretconfig/monzo_tokens.json - Access and refresh tokens (auto-refreshed)Monzo's Strong Customer Authentication (SCA) limits transaction history access:
The local SQLite cache preserves all synced transactions permanently, so run monzo_sync promptly after monzo-mcp auth.
To backfill a specific range, pass since to monzo_sync - an ISO date (2026-01-01) or datetime (2026-01-01T14:30:00Z). Reaching back more than ~90 days only works inside the SCA window; outside it, only the last 90 days are returned.
Older cached transactions gain fields added in newer versions (e.g. counterparty/payee details on bank transfers) only when re-fetched, which a post-auth full sync does for the history it re-pulls.
config/ directory (gitignored)monzo-mcp auth and approve the login in the Monzo app within 5 minutes, then sync straight away (see the SCA window above).monzo-mcp auth to re-authorise.monzo_sync (or any cache-reading tool, which auto-syncs) once after authenticating./data. See Docker; the same volume must be passed to the auth run and to the server.auth sits on "Waiting for callback..." after you approve - the callback was not delivered. Press Ctrl-C and run it again. Under Docker, check the port is published (-p 127.0.0.1:6600:6600).See CONTRIBUTING.md for development setup, the test workflow, and the pre-commit hook. Changes are tracked in CHANGELOG.md.
GPL-3.0-or-later. See LICENSE.
Factual signals from GitHub, npm, and our automated checks ā not a rating.
No reviews yet ā be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/partymola-monzo-mcp)<a href="https://allmcps.com/mcp/partymola-monzo-mcp"><img src="https://allmcps.com/api/badge/partymola-monzo-mcp?style=directory" alt="Monzo MCP on AllMCPs" /></a>