Read-only MCP server for the open-banking.io PSD2 bank API β accounts, balances, transactions.
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.
A thin, read-only Model Context Protocol server for the open-banking.io PSD2 API. It lets AI agents (Claude Desktop, Cursor, any MCP client) answer questions like βWhat's my balance?β and βSummarise last month's transactionsβ over your own bank accounts.
It wraps the official open-banking-io Python SDK
and inherits its zero-knowledge property: the service only ever returns ciphertext, and every
sensitive field (IBAN, owner name, amounts, counterparties) is decrypted in-process with your
exported private key. No plaintext ever touches a third party β including the LLM only sees what
your MCP client sends it.
| Tool | Arguments | Description |
|---|---|---|
list_accounts | β | Bank accounts: bank, country, IBAN, owner, display name, currency, balances, needs_reconnect flag |
get_balances | account_id | ISO 20022 balances for one account (ITBD = booked, ITAV = available) |
get_transactions | account_id, date_from?, date_to?, limit? (default 50, max 500), offset? | Statement lines, newest first, with counterparty and remittance details |
list_connections | β | Bank connections/consents: status, valid_until, last_synced_at, account count |
All tools are read-only. There are intentionally no sync, payment-initiation or consent-management tools β see Limitations.
| Env var | Required | Meaning |
|---|---|---|
OBI_CREDENTIALS | preferred | Path to (or inline JSON of) the credentials bundle exported from the open-banking.io app β contains apiBaseUrl, apiKey and the encryption private key |
OBI_API_KEY | alternative | API key, if you don't use the bundle |
OBI_PRIVATE_KEY | alternative | Base64 PKCS#8 EC (SECP256R1) private key matching OBI_API_KEY |
OBI_BASE_URL | with alternative | API base URL (the bundle's apiBaseUrl), required when using the split env vars |
Export credentials in the app β Settings β Credentials to get the bundle file.
claude_desktop_config.json (Claude β Settings β Developer β Edit Config):
.cursor/mcp.json:
Requires uv (curl -LsSf https://astral.sh/uv/install.sh | sh).
Once published to PyPI the --from git+β¦ argument can be dropped.
get_transactions + grouping)list_connections)get_* methods are exposed. sync/sync_all
exist in the SDK but are deliberately not offered; agents cannot move money or alter consents
through this server."1234.56"), never floats.get_transactions defaults to 50 items and clamps at 500 to protect
agent context windows; use offset to paginate.uvx --from git+β¦ (above) or from source. Publishing to PyPI as
open-banking-io-mcp is planned.| SDK call | HTTP (behind the SDK) |
|---|---|
get_accounts() | GET {apiBaseUrl}/api/accounts |
get_transactions(id, from, to, limit, offset) | GET {apiBaseUrl}/api/accounts/{id}/transactions |
get_connections() | GET {apiBaseUrl}/api/connections |
Auth: X-Api-Key header. Responses carry zero-knowledge envelopes
(ECDH P-256 β HKDF-SHA256 β AES-256-GCM) decrypted locally by the SDK.
Full wire format: clients repo Β·
THREAT_MODEL.md.
MIT β same as the clients SDK repos.
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/open-banking-open-banking-io)<a href="https://allmcps.com/mcp/open-banking-open-banking-io"><img src="https://allmcps.com/api/badge/open-banking-open-banking-io?style=directory" alt="Open Banking (open Banking.io) on AllMCPs" /></a>