Model Context Protocol (MCP) server exposing the camt053 ISO 20022 Bank Statement library as agent tools.
Project description
camt053-mcp: An MCP Server for ISO 20022 Bank Statements
A Model Context Protocol server that exposes the camt053
ISO 20022 Bank Statement library as tools for AI agents and assistants —
discover message types and return reasons, inspect input schemas, validate
records and financial identifiers, parse incoming statements, and generate
validated reversing-entry XML, all from your favourite MCP client.
Latest release: v0.0.1 — nine MCP tools over stdio, all backed by the shared
camt053.serviceslayer, for Python 3.10+. See what's new →
Contents
- Overview
- Install
- Quick Start
- Tools
- Using the tools
- Development
- License
- Contributing
- Acknowledgements
Overview
The Model Context Protocol (MCP) is an open standard that lets AI agents
and assistants discover and call external tools in a uniform way. camt053-mcp
is an MCP server that turns the camt053 library into a set of
first-class agent tools, so an assistant can read and reverse ISO 20022
camt.05x cash-management messages — the standardised bank-to-customer
account reports, statements, and debit/credit notifications — directly from a
conversation.
The headline capability is the one-shot reversing-entry workflow: read an incoming camt.053 statement, find the entries carrying a return reason code (e.g. AC04 Closed Account), and emit a validated reversing entry.
Every tool is a thin, typed wrapper over camt053.services — the single shared
facade also used by the CLI and REST API — so all interfaces behave identically.
Tools return JSON-serialisable data; on an error they return an
{"error": ...} payload rather than raising.
- Website: https://camt053.com
- Source code: https://github.com/sebastienrousseau/camt053-mcp
- Bug reports: https://github.com/sebastienrousseau/camt053-mcp/issues
This package is part of the camt053 suite — a set of independently
installable packages that share the camt053.services layer:
camt053— the core library (CLI + REST API)camt053-mcp— this package, the Model Context Protocol servercamt053-lsp— the Language Server Protocol server for editors
flowchart LR
A["MCP client<br/>(Claude Desktop, IDE, agent)"] -->|stdio| B["camt053-mcp"]
B -->|delegates to| C["camt053.services"]
C -->|parse + reverse + validate| D["ISO 20022 camt.053 XML"]
Install
camt053-mcp runs on macOS, Linux, and Windows and requires Python 3.10+
and pip. It pulls in the core camt053 library and the MCP SDK
automatically.
python -m pip install camt053-mcp
Note: while the core
camt053library is not yet on PyPI, install it from source first:python -m pip install "git+https://github.com/sebastienrousseau/camt053.git" python -m pip install camt053-mcp
Using an isolated virtual environment (recommended)
python -m venv venv
source venv/bin/activate # macOS/Linux
venv\Scripts\activate # Windows
python -m pip install -U camt053-mcp
Quick Start
Launch the server over stdio (the FastMCP default transport):
camt053-mcp
Register it with any MCP client (e.g. Claude Desktop) by adding it to the client's configuration:
{
"mcpServers": {
"camt053": { "command": "camt053-mcp" }
}
}
The agent can then call the tools below to parse incoming statements and generate validated reversing entries on demand.
Tools
All tools delegate to the shared camt053.services layer, so they behave
identically to the CLI and REST API.
| Tool | Purpose |
|---|---|
list_message_types |
List the 3 supported camt.05x message types |
list_return_reasons |
List the ISO external return reason codes |
get_required_fields |
Required input fields for a message type |
get_input_schema |
Full input JSON Schema for a message type |
validate_records |
Validate flat records against a message type |
validate_identifier |
Validate an IBAN, BIC, or LEI |
parse_statement |
Parse an incoming camt.05x statement into data |
filter_entries |
Return entries carrying a return reason code |
generate_reversal |
Generate a validated reversing-entry XML document |
Using the tools
You can invoke the tools in-process — without a transport — straight through the
FastMCP instance. This mirrors what an agent receives over stdio. The runnable
version of this snippet lives in examples/mcp_tools.py.
import asyncio
from camt053_mcp.server import server
# A complete camt.053 statement with one entry returned AC04 (Closed Account).
statement_xml = """<?xml version="1.0" encoding="UTF-8"?>
<Document xmlns="urn:iso:std:iso:20022:tech:xsd:camt.053.001.14">
<BkToCstmrStmt>
<GrpHdr><MsgId>STMT-MSG-0001</MsgId><CreDtTm>2026-06-15T08:00:00</CreDtTm></GrpHdr>
<Stmt>
<Id>STMT-0001</Id><CreDtTm>2026-06-15T08:00:00</CreDtTm>
<Acct><Id><IBAN>GB29NWBK60161331926819</IBAN></Id><Ccy>EUR</Ccy></Acct>
<Bal><Tp><CdOrPrtry><Cd>CLBD</Cd></CdOrPrtry></Tp>
<Amt Ccy="EUR">10000.00</Amt><CdtDbtInd>CRDT</CdtDbtInd>
<Dt><Dt>2026-06-15</Dt></Dt></Bal>
<Ntry>
<NtryRef>NTRY-0001</NtryRef>
<Amt Ccy="EUR">1500.00</Amt><CdtDbtInd>CRDT</CdtDbtInd>
<Sts><Cd>BOOK</Cd></Sts>
<NtryDtls><TxDtls>
<RtrInf><Rsn><Cd>AC04</Cd></Rsn></RtrInf>
</TxDtls></NtryDtls>
</Ntry>
</Stmt>
</BkToCstmrStmt>
</Document>"""
async def main() -> None:
async def call(name, args):
result = await server.call_tool(name, args)
content = result[0] if isinstance(result, tuple) else result
return content[0].text if content else ""
# Validate an identifier.
print(await call("validate_identifier",
{"kind": "bic", "value": "NWBKGB2LXXX"}))
# -> {"kind": "bic", "value": "NWBKGB2LXXX", "valid": true}
# Generate a validated reversing-entry document for the AC04 entries.
xml = await call("generate_reversal",
{"xml": statement_xml, "reason_code": "AC04"})
print(xml[:46]) # -> <?xml version="1.0" encoding="UTF-8"?> ...
asyncio.run(main())
Run it directly:
python examples/mcp_tools.py
Development
camt053-mcp uses Poetry and mise.
git clone https://github.com/sebastienrousseau/camt053-mcp.git && cd camt053-mcp
mise install
poetry install
poetry shell
This package depends on the core
camt053library. Until it is on PyPI, install it from source first:pip install "git+https://github.com/sebastienrousseau/camt053.git".
A Makefile orchestrates the quality gates (kept in lockstep with CI):
make check # all gates (REQUIRED before commit)
make test # pytest
make lint # ruff + black
make type-check # mypy --strict
License
Licensed under the Apache License, Version 2.0. Any contribution submitted for inclusion shall be licensed as above, without additional terms.
Contributing
Contributions are welcome — see the contributing instructions. Thanks to all contributors.
Acknowledgements
Built on the camt053 ISO 20022 Bank Statement library and the
Model Context Protocol Python SDK.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file camt053_mcp-0.0.1.tar.gz.
File metadata
- Download URL: camt053_mcp-0.0.1.tar.gz
- Upload date:
- Size: 10.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
033228ec835ad16c7aae13a1ce4e65189e02bef375998fb45a1b6f5369708337
|
|
| MD5 |
2ad1ed8ce02a938b64139f2411e127ef
|
|
| BLAKE2b-256 |
6fd859602a9adc346e9a3d3343572e846c02973752e6055742c16e8701a80a3b
|
Provenance
The following attestation bundles were made for camt053_mcp-0.0.1.tar.gz:
Publisher:
release.yml on sebastienrousseau/camt053-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camt053_mcp-0.0.1.tar.gz -
Subject digest:
033228ec835ad16c7aae13a1ce4e65189e02bef375998fb45a1b6f5369708337 - Sigstore transparency entry: 1853961125
- Sigstore integration time:
-
Permalink:
sebastienrousseau/camt053-mcp@079394540f978c0e9cb6b436fe43b334e2ea1956 -
Branch / Tag:
refs/tags/v0.0.1 - Owner: https://github.com/sebastienrousseau
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@079394540f978c0e9cb6b436fe43b334e2ea1956 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camt053_mcp-0.0.1-py3-none-any.whl.
File metadata
- Download URL: camt053_mcp-0.0.1-py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0091b0488410ed97dd77525646610deb871b42ae3359186d5db8cb3c48dc8394
|
|
| MD5 |
23a2e1262520999e02d64a9418c7e112
|
|
| BLAKE2b-256 |
1d2a593a8e1e1785032158ea391bc544bad5680ae878c3b6d1c5bd045272ba66
|
Provenance
The following attestation bundles were made for camt053_mcp-0.0.1-py3-none-any.whl:
Publisher:
release.yml on sebastienrousseau/camt053-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camt053_mcp-0.0.1-py3-none-any.whl -
Subject digest:
0091b0488410ed97dd77525646610deb871b42ae3359186d5db8cb3c48dc8394 - Sigstore transparency entry: 1853961152
- Sigstore integration time:
-
Permalink:
sebastienrousseau/camt053-mcp@079394540f978c0e9cb6b436fe43b334e2ea1956 -
Branch / Tag:
refs/tags/v0.0.1 - Owner: https://github.com/sebastienrousseau
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@079394540f978c0e9cb6b436fe43b334e2ea1956 -
Trigger Event:
push
-
Statement type: