acmt001-mcp
acmt001-mcp is an MCP server that enables AI agents to discover, validate, and generate ISO 20022 Account Management (acmt) XML messages through six tools:
List supported message types (
list_message_types): Discover all 34 supportedacmtmessage types (e.g.,acmt.001.001.08Account Opening Instruction) and their human-readable names — the recommended starting point.Get required fields (
get_required_fields): Retrieve a checklist of mandatory input field names for any supported message type, useful for building account records before generation.Get full input schema (
get_input_schema): Fetch the complete JSON Schema for a message type, including all fields, types, and constraints — ideal for form generation or pre-validation.Validate account records (
validate_records): Check one or more flat account records against a message type's schema and receive a row-by-row error report, catching structural/type errors before XML generation.Validate financial identifiers (
validate_identifier): Perform a pass/fail check on a single IBAN, BIC/SWIFT code, or LEI, returning{"kind": ..., "value": ..., "valid": bool}.Generate ISO 20022 XML messages (
generate_message): Transform flat account records into a fully XSD-validated ISO 20022acmtXML document — no file I/O required; returns the XML string or an error payload if generation fails.
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.5 — six MCP tools over stdio, all backed by the shared
acmt001.serviceslayer, for Python 3.10+. See what's new →
Contents
Related MCP server: json-validate
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-mcpNote: 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
python -m venv venv
source venv/bin/activate # macOS/Linux
venv\Scripts\activate # Windows
python -m pip install -U acmt001-mcpQuick Start
Launch the server over stdio (the FastMCP default transport):
acmt001-mcpRegister 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.
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 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.pyDevelopment
acmt001-mcp uses Poetry and mise.
git clone https://github.com/sebastienrousseau/acmt001-mcp.git && cd acmt001-mcp
mise install
poetry install
poetry shellThis 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 --strictRelated MCP Servers
Part of the ISO 20022 MCP Suite — open-source, Apache-2.0 licensed MCP servers for banking and financial-services AI agents:
Server | Purpose |
Generate & validate ISO 20022 pain.001 payment files (v03–v12, pain.008, SEPA) with rulebook checks | |
Generate, validate, parse & scheme-check ISO 20022 pacs.008 FI-to-FI credit transfers + Nov-2026 address linting | |
Parse & reconcile ISO 20022 camt.053 bank-to-customer statements — CBPR+/HVPS+ ready | |
Parse bank statements (BAI2, MT940/MT942, CAMT.053, OFX, CSV) into structured transactions | |
Lossless YAML 1.2 parsing, formatting & validation (Rust, 100% spec compliance) |
MCP Registry
mcp-name: io.github.sebastienrousseau/acmt001-mcp
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.
Maintenance
Related MCP Servers
- AlicenseAqualityBmaintenanceModel Context Protocol (MCP) server for French Electronic Invoicing (NF XP Z12-013). Provide tools to validate, generate, and explore API specifications for PDP/OD interoperability.Last updated34Apache 2.0
- Flicense-qualityDmaintenanceMCP server for validating JSON against JSON Schema and repairing malformed/invalid JSON.Last updated81
- AlicenseAqualityAmaintenanceAn MCP server that exposes the pacs008 ISO 20022 FI-to-FI Customer Credit Transfer library as tools for AI agents and assistants, enabling generation, validation, and parsing of pacs.008 credit transfer XML messages.Last updated16Apache 2.0
- AlicenseAqualityAmaintenanceUnified gateway for ISO 20022 message families, providing meta-tools to search, describe, validate, generate, and parse financial messages.Last updated7Apache 2.0
Related MCP Connectors
MCP Spec Compliance MCP — audits any MCP server.json against the official Model Context Protocol
A paid remote MCP for hosted MCP server, built to return verdicts, receipts, usage logs, and audit-r
JSON Schema validation MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sebastienrousseau/acmt001-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server