Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.partymola/monzo-mcp

OCI · GHCR.IO/PARTYMOLA/MONZO-MCP:V0.5.0 · SCANNED AUG 3

Read-only MCP server for the Monzo banking API: OAuth, local transaction cache, spending analysis.

6 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security0
  • Malware scan not yet available for this package.Unverified
  • CVE data not yet available for this package.Unverified
  • Install-script risk not yet assessed.Unverified
  • Dependency-health data not yet available.Unverified
Provenance & Transparency32
Schema Quality & AI Usability0
  • Schema quality not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.Unverified
Stability & Change Management0
  • Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.Unverified
Tool Coverage0
  • Tool coverage not yet verified: we do not have a sandbox capture of the tool definitions this version of the package serves yet.Unverified
Capabilities0
  • Protocol version not yet verified: we do not have a sandbox capture of the MCP handshake this version of the package performs yet.Unverified

Unverified: 5 categories

Categories scored 0 because we could not verify them: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

oci · ghcr.io/partymola/monzo-mcp:v0.5.0

# add to Claude Code
claude mcp add partymola-monzo-mcp -- docker run --rm -i ghcr.io/partymola/monzo-mcp:v0.5.0
# add to Codex CLI
codex mcp add partymola-monzo-mcp -- docker run --rm -i ghcr.io/partymola/monzo-mcp:v0.5.0
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "partymola-monzo-mcp": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "ghcr.io/partymola/monzo-mcp:v0.5.0"
      ],
      "enabled": true
    }
  }
}
# ~/.hermes/config.yaml
mcp_servers:
  partymola-monzo-mcp:
    command: "docker"
    args: ["run", "--rm", "-i", "ghcr.io/partymola/monzo-mcp:v0.5.0"]
// mcp.json
{
  "mcpServers": {
    "partymola-monzo-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/partymola/monzo-mcp:v0.5.0"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 6

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed oci/ghcr.io/partymola/monzo-mcp:v0.5.0

Provenance none

Ecosystem: oci · Outcome: none

Reason: no_attestation

MCP tools — 7 exposed · ~937 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
monzo_get_balance ~61

Get current balance for a Monzo account. Args: account_type: "personal" or "joint" (default: "personal") Returns balance, spend today, and currency. Also records a balance snapshot.

NameTypeReqDescription
account_typestring
NameTypeReqDescription
resultstringyes

No examples provided.

monzo_list_accounts ~40

List all Monzo accounts with their types and IDs. Returns account details including whether each is personal or joint, and whether it is open or closed.

Input schema present but exposes no named parameters.

NameTypeReqDescription
resultstringyes

No examples provided.

monzo_list_pots ~71

List all pots (savings buckets) for a Monzo account. Args: account_type: "personal" or "joint" (default: "personal") Returns the account the pots belong to, plus pot names and balances. Also records balance snapshots.

NameTypeReqDescription
account_typestring
NameTypeReqDescription
resultstringyes

No examples provided.

monzo_list_transactions ~254

List transactions from the local cache. Auto-syncs if the cache is stale (last sync before today). Queries the synced transaction database, not the live API. Bank transfers (faster payments, p2p, bacs) include a `counterparty` object with the payee name and, where the scheme provides them, sort code and account number. Returns `{"account_type": ..., "transactions": [...]}`, where account_type echoes the filter applied and is null when unfiltered. Args: account_type: "personal" or "joint" (default: all) since: Start date in ISO format, e.g. "2026-01-01" (inclusive) before: End date in ISO format, e.g. "2026-02-01" (exclusive) category: Exact category match, e.g. "groceries", "eating_out", "transport" merchant: Merchant name search (case-insensitive, partial match) limit: Max results (default 50)

NameTypeReqDescription
account_type
before
category
limitinteger
merchant
since
NameTypeReqDescription
resultstringyes

No examples provided.

monzo_search_transactions ~197

Search cached transactions by merchant, counterparty (payee), description, or notes. Auto-syncs if the cache is stale (last sync before today). Case-insensitive partial match across merchant_name, counterparty_name, description, and notes fields. Counterparty matching finds bank transfers (faster payments, p2p, bacs) by payee name. Returns `{"account_type": ..., "transactions": [...]}`, where account_type echoes the filter applied and is null when unfiltered. Args: query: Search term account_type: "personal" or "joint" (default: all) since: Start date in ISO format (inclusive) before: End date in ISO format (exclusive) limit: Max results (default 30)

NameTypeReqDescription
account_type
before
limitinteger
querystringyes
since
NameTypeReqDescription
resultstringyes

No examples provided.

monzo_spending ~152

Analyse spending from cached Monzo transactions. Auto-syncs if the cache is stale (last sync before today). Every result carries `account_type`, echoing the filter applied and null when unfiltered, so a zero total says which account it measured. Args: month: Month in YYYY-MM format (default: current month) category: Filter by category, e.g. "groceries", "eating_out", "transport" account_type: "personal" or "joint" (default: all) detail: If true, return individual transactions instead of category summary

NameTypeReqDescription
account_type
category
detailboolean
month
NameTypeReqDescription
resultstringyes

No examples provided.

monzo_sync ~162

Sync transactions, balances, and pots from the Monzo API into the local cache. Fetches up to 11 months of history (within SCA window) or falls back to the last-synced timestamp / 90 days. Handles pagination and auth-hold deduplication automatically. Args: account_type: "personal", "joint", or None to sync all accounts since: Optional ISO date ("2026-01-01") or datetime ("2026-01-01T14:30:00Z") to start the backfill from, overriding last-sync resumption. Reaching beyond ~90 days only works inside the post-auth SCA window.

NameTypeReqDescription
account_type
since
NameTypeReqDescription
resultstringyes

No examples provided.