Model Context Protocol (MCP) server exposing the acmt001 ISO 20022 Account Management library as agent tools.
Project description
acmt001-mcp: An MCP Server for ISO 20022 Account Management
A Model Context Protocol server that exposes the acmt001
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.1 — six MCP tools over stdio, all backed by the shared
acmt001.serviceslayer, for Python 3.10+. See what's new →
Contents
- Overview
- Install
- Quick Start
- Tools
- Using the tools
- Development
- Licence
- Contribution
- 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. acmt001-mcp
is an MCP server that turns the acmt001 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.
- Website: https://acmt001.com
- Source code: https://github.com/sebastienrousseau/acmt001-mcp
- Bug reports: https://github.com/sebastienrousseau/acmt001-mcp/issues
This package is part of the acmt001 suite — a set of independently
installable packages that share the acmt001.services layer:
acmt001— the core library (CLI + REST API)acmt001-mcp— this package, the Model Context Protocol serveracmt001-lsp— the Language Server Protocol server for editors
flowchart LR
A["MCP client<br/>(Claude Desktop, IDE, agent)"] -->|stdio| B["acmt001-mcp"]
B -->|delegates to| C["acmt001.services"]
C -->|render + validate| D["ISO 20022 acmt XML"]
Install
acmt001-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.
python -m pip install acmt001-mcp
Note: while the core
acmt001library is not yet on PyPI, install it from source first:python -m pip install "git+https://github.com/sebastienrousseau/acmt001.git" python -m pip install acmt001-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 acmt001-mcp
Quick Start
Launch the server over stdio (the FastMCP default transport):
acmt001-mcp
Register it with any MCP client (e.g. Claude Desktop) by adding it to the client's configuration:
{
"mcpServers": {
"acmt001": { "command": "acmt001-mcp" }
}
}
The agent can then call the tools below to validate account data and generate ISO 20022 messages on demand.
Tools
All tools delegate to the shared acmt001.services layer, so they behave
identically to the CLI and REST API.
| Tool | Purpose |
|---|---|
list_message_types |
List the 34 supported acmt message types |
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 |
generate_message |
Generate a validated acmt XML message |
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 acmt001_mcp.server import server
# A single flat account-opening record.
record = [
{
"msg_id": "ACMT-MSG-0001",
"creation_date_time": "2026-01-15T10:30:00",
"process_id": "ACMT-PRC-0001",
"account_id": "GB29NWBK60161331926819",
"account_currency": "EUR",
"account_name": "Treasury Operating Account",
"account_type_cd": "CACC",
"account_servicer_bic": "NWBKGB2LXXX",
"account_owner_name": "Acme Embedded Finance Ltd",
"account_owner_country": "GB",
"org_full_legal_name": "Acme Embedded Finance Limited",
"org_country_of_operation": "GB",
"org_id_lei": "5493001KJTIIGC8Y1R12",
}
]
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": "lei", "value": "5493001KJTIIGC8Y1R12"}))
# -> {"kind": "lei", "value": "5493001KJTIIGC8Y1R12", "valid": true}
# Generate a validated ISO 20022 Account Opening Request.
xml = await call("generate_message",
{"message_type": "acmt.007.001.05", "records": record})
print(xml[:46]) # -> <?xml version="1.0" encoding="UTF-8"?> ...
asyncio.run(main())
Run it directly:
python examples/mcp_tools.py
Development
acmt001-mcp uses Poetry and mise.
git clone https://github.com/sebastienrousseau/acmt001-mcp.git && cd acmt001-mcp
mise install
poetry install
poetry shell
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):
make check # all gates (REQUIRED before commit)
make test # pytest
make lint # ruff + black
make type-check # mypy --strict
Licence
Licensed under the Apache Licence, Version 2.0. Any contribution submitted for inclusion shall be licensed as above, without additional terms.
Contribution
Contributions are welcome — see the contributing instructions. Thanks to all contributors.
Acknowledgements
Built on the acmt001 ISO 20022 Account Management 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 acmt001_mcp-0.0.1.tar.gz.
File metadata
- Download URL: acmt001_mcp-0.0.1.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
803b7e005fa96126618b58f4e0bf3dc66a52227f25aff4677ac100ed2cc69696
|
|
| MD5 |
750e086910bcccae43cfa07a989eb454
|
|
| BLAKE2b-256 |
df11127b06fe072c0283da5dcb3a8cc8f65375f7cc31db26c02e2a16081cba84
|
Provenance
The following attestation bundles were made for acmt001_mcp-0.0.1.tar.gz:
Publisher:
release.yml on sebastienrousseau/acmt001-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
acmt001_mcp-0.0.1.tar.gz -
Subject digest:
803b7e005fa96126618b58f4e0bf3dc66a52227f25aff4677ac100ed2cc69696 - Sigstore transparency entry: 1847312241
- Sigstore integration time:
-
Permalink:
sebastienrousseau/acmt001-mcp@9a63782c84c04fd7715e01798eaf4fb5d7ef2b7a -
Branch / Tag:
refs/heads/main - Owner: https://github.com/sebastienrousseau
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9a63782c84c04fd7715e01798eaf4fb5d7ef2b7a -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file acmt001_mcp-0.0.1-py3-none-any.whl.
File metadata
- Download URL: acmt001_mcp-0.0.1-py3-none-any.whl
- Upload date:
- Size: 11.1 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 |
4d67b1d2cf7d78302703e56f3f897b44c07c7dde31749bd38303fb75010be1cd
|
|
| MD5 |
dba18c0efc0583e22f40d9b0cd49f007
|
|
| BLAKE2b-256 |
b56006021f5d5b7c37d79e98491600942649f811c16400579e351d692da88b52
|
Provenance
The following attestation bundles were made for acmt001_mcp-0.0.1-py3-none-any.whl:
Publisher:
release.yml on sebastienrousseau/acmt001-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
acmt001_mcp-0.0.1-py3-none-any.whl -
Subject digest:
4d67b1d2cf7d78302703e56f3f897b44c07c7dde31749bd38303fb75010be1cd - Sigstore transparency entry: 1847312723
- Sigstore integration time:
-
Permalink:
sebastienrousseau/acmt001-mcp@9a63782c84c04fd7715e01798eaf4fb5d7ef2b7a -
Branch / Tag:
refs/heads/main - Owner: https://github.com/sebastienrousseau
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9a63782c84c04fd7715e01798eaf4fb5d7ef2b7a -
Trigger Event:
workflow_dispatch
-
Statement type: