MCP server for ISO 20022 acmt.001 account management message generation and validation.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
![acmt001-mcp banner][banner]
[![PyPI Version][pypi-badge]][07] [![Python Versions][python-versions-badge]][07] [![PyPI Downloads][pypi-downloads-badge]][07] [![Licence][licence-badge]][01] [![Tests][tests-badge]][tests-url] [![Quality][quality-badge]][quality-url] [![Documentation][docs-badge]][docs-url]
A [Model Context Protocol][mcp] server that exposes the [acmt001][core]
ISO 20022 Account Management library as tools for AI agents and assistants β
discover message types, inspect input schemas, validate records and financial
identifiers, and generate validated XML, all from your favourite MCP client.
Latest release: v0.0.5 β six MCP tools over stdio, all backed by the shared
acmt001.serviceslayer, for Python 3.10+. [See what's new β][release-005]
The [Model Context Protocol][mcp] (MCP) is an open standard that lets AI agents
and assistants discover and call external tools in a uniform way. acmt001-mcp
is an MCP server that turns the [acmt001][core] library into a set of
first-class agent tools, so an assistant can generate and validate ISO 20022
acmt Account Management XML messages β the standardised instructions,
confirmations, and reports that govern the lifecycle of a bank account (opening,
maintenance, closing, identification, and switching) β directly from a
conversation.
Every tool is a thin, typed wrapper over acmt001.services β the single shared
facade also used by the CLI and REST API β so all interfaces behave identically.
Tools return JSON-serialisable data; on a validation error they return an
{"error": ...} payload rather than raising.
This package is part of the acmt001 suite β a set of independently
installable packages that share the acmt001.services layer:
acmt001][core] β the core library (CLI + REST API)acmt001-mcp β this package, the Model Context Protocol serveracmt001-lsp][lsp] β the Language Server Protocol server for editorsacmt001-mcp runs on macOS, Linux, and Windows and requires Python 3.10+
and pip. It pulls in the core acmt001 library and the MCP SDK
automatically.
Note: while the core
acmt001library is not yet on PyPI, install it from source first:
Launch the server over stdio (the FastMCP default transport):
Register it with any MCP client (e.g. Claude Desktop) by adding it to the client's configuration:
The agent can then call the tools below to validate account data and generate ISO 20022 messages on demand.
All tools delegate to the shared acmt001.services layer, so they behave
identically to the CLI and REST API.
list_message_types β List the 34 supported acmt message typesget_required_fields β Required input fields for a message typeget_input_schema β Full input JSON Schema for a message typevalidate_records β Validate flat records against a message typevalidate_identifier β Validate an IBAN, BIC, or LEIgenerate_message β Generate a validated acmt XML messageYou 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.
Run it directly:
The benchmark measures what an agent waits for: the dispatch floor
(list_message_types, around a microsecond), the metadata lookups used
to build a request, and the two batch tools side by side.
The result worth knowing is the asymmetry between those two.
validate_records checks every record, so it is linear in batch size.
generate_message, for a single-account message type like the default
acmt.007.001.05, renders only the first record β twenty-seven of
the thirty-four templates work this way. So validating a hundred records
and generating from them costs roughly 260 ms of validation against 6 ms
of generation, and returns one message rather than a hundred.
That is correct ISO 20022 behaviour and a real trap when batching, which is why the benchmark prints output size beside the timings: flat bytes across growing input is what tells you the rest of the batch was not rendered. See docs/benchmarks.md.
acmt001-mcp uses Poetry and mise.
This package depends on the core
acmt001library. Until it is on PyPI, install it from source first:pip install "git+https://github.com/sebastienrousseau/acmt001.git".
A Makefile orchestrates the quality gates (kept in lockstep with CI):
Part of the ISO 20022 MCP Suite β open-source, Apache-2.0 licensed MCP servers for banking and financial-services AI agents:
| Server | Purpose |
|---|---|
pain001-mcp | Generate & validate ISO 20022 pain.001 payment files (v03βv12, pain.008, SEPA) with rulebook checks |
pacs008-mcp | Generate, validate, parse & scheme-check ISO 20022 pacs.008 FI-to-FI credit transfers + Nov-2026 address linting |
camt053-mcp | Parse & reconcile ISO 20022 camt.053 bank-to-customer statements β CBPR+/HVPS+ ready |
bankstatementparser-mcp | Parse bank statements (BAI2, MT940/MT942, CAMT.053, OFX, CSV) into structured transactions |
noyalib-mcp | Lossless YAML 1.2 parsing, formatting & validation (Rust, 100% spec compliance) |
mcp-name: io.github.sebastienrousseau/acmt001-mcp
Licensed under the [Apache Licence, Version 2.0][01]. Any contribution submitted for inclusion shall be licensed as above, without additional terms.
Contributions are welcome β see the [contributing instructions][04]. Thanks to all [contributors][05].
Built on the [acmt001][core] ISO 20022 Account Management library and the
[Model Context Protocol][mcp] Python SDK.
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/acmt001-mcp)<a href="https://allmcps.com/mcp/acmt001-mcp"><img src="https://allmcps.com/api/badge/acmt001-mcp?style=directory" alt="Acmt001 MCP on AllMCPs" /></a>