Skip to main content

Model Context Protocol (MCP) server exposing the pacs008 ISO 20022 FI-to-FI Customer Credit Transfer library as agent tools.

Project description

pacs008-mcp: An MCP Server for ISO 20022 FI-to-FI Credit Transfers

pacs008-mcp banner

PyPI Version Python Versions PyPI Downloads Licence Tests Quality Documentation

A Model Context Protocol server that exposes the pacs008 ISO 20022 FI-to-FI Customer Credit Transfer library as tools for AI agents and assistants — discover message types and scheme profiles, validate records against the JSON Schema and against a rail's usage guidelines, generate validated XML, validate raw XML against the bundled XSD, and parse inbound messages, all from your favourite MCP client.

Latest release: v0.0.2 — 14 MCP tools over stdio, all backed by the pacs008 library, for Python 3.10+. Adds the November 2026 structured-address cliff tools.

Contents

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. pacs008-mcp is an MCP server that turns the pacs008 library into a set of first-class agent tools, so an assistant can generate, validate, and parse ISO 20022 pacs.008 FI-to-FI Customer Credit Transfer XML messages — and the related pacs.002/.004 status and return messages — directly from a conversation.

Every tool is a thin, typed wrapper over the pacs008 library — the same package 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.

flowchart LR
    A["MCP client<br/>(Claude Desktop, IDE, agent)"] -->|stdio| B["pacs008-mcp"]
    B -->|delegates to| C["pacs008 library"]
    C -->|render + validate| D["ISO 20022 pacs XML"]

Install

pacs008-mcp runs on macOS, Linux, and Windows and requires Python 3.10+ and pip. It pulls in the core pacs008 library and the MCP SDK automatically.

python -m pip install pacs008-mcp

Note: while the core pacs008 library is not yet on PyPI, install it from source first:

python -m pip install "git+https://github.com/sebastienrousseau/pacs008.git"
python -m pip install pacs008-mcp

Quick Start

Launch the server over stdio (the FastMCP default transport):

pacs008-mcp

Register it with any MCP client (e.g. Claude Desktop) by adding it to the client's configuration:

{
  "mcpServers": {
    "pacs008": { "command": "pacs008-mcp" }
  }
}

Tools

All tools wrap the pacs008 library, so they behave identically to the CLI and REST API.

Tool Purpose
list_message_types List the 20 supported ISO 20022 pacs message types
list_schemes List the registered scheme / usage-guideline profiles
get_scheme Inspect a scheme profile's rules
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's schema
validate_scheme Validate records against a scheme's usage guidelines
generate_message Generate a validated pacs XML message
validate_xml Validate a raw XML string against the bundled XSD
parse_message Parse & classify an inbound ISO 20022 message
classify_address Classify a postal address as structured / hybrid / unstructured
validate_address Validate one postal address against an address policy
repair_address Upgrade legacy unstructured address lines toward hybrid/structured form
validate_addresses Batch-validate every party address across payment rows

November 2026 structured-address cliff

On 14 November 2026, fully unstructured postal addresses are decommissioned across SWIFT CBPR+, HVPS+, TARGET2 RTGS, CHAPS, Fedwire and Lynx — after that date, any cross-border or high-value payment carrying an unstructured-only postal address is rejected at the rail. The four address tools above wrap the pacs008 library's standards.address module so an agent can get ahead of the deadline: classify_address shows where an address stands, validate_address / validate_addresses enforce a policy (defaulting to the cliff rule hybrid_or_structured, which rejects unstructured addresses), and repair_address runs country-aware heuristics (GB, US, DE, FR, JP, plus a best-effort fallback) to lift legacy address lines into hybrid form. The repair step is experimental — audit its output before submitting downstream.

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 pacs008_mcp.server import server

record = [
    {
        "msg_id": "MSG001",
        "creation_date_time": "2026-01-15T10:30:00",
        "nb_of_txs": "1",
        "settlement_method": "CLRG",
        "interbank_settlement_date": "2026-01-15",
        "end_to_end_id": "E2E001",
        "interbank_settlement_amount": "1000.00",
        "interbank_settlement_currency": "EUR",
        "charge_bearer": "SHAR",
        "debtor_name": "Debtor Corp",
        "debtor_agent_bic": "DEUTDEFF",
        "creditor_agent_bic": "COBADEFF",
        "creditor_name": "Creditor Ltd",
    }
]


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 ""

    print(await call("list_schemes", {}))
    xml = await call("generate_message",
                     {"message_type": "pacs.008.001.08", "records": record})
    print(xml[:46])  # -> <?xml version="1.0" encoding="UTF-8"?> ...


asyncio.run(main())

Run it directly:

python examples/mcp_tools.py

Development

pacs008-mcp uses Poetry and mise.

git clone https://github.com/sebastienrousseau/pacs008-mcp.git && cd pacs008-mcp
mise install
poetry install
poetry shell

This package depends on the core pacs008 library. Until it is on PyPI, install it from source first: pip install "git+https://github.com/sebastienrousseau/pacs008.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

MCP Registry

mcp-name: io.github.sebastienrousseau/pacs008-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 pacs008 ISO 20022 FI-to-FI Customer Credit Transfer library and the Model Context Protocol Python SDK.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pacs008_mcp-0.0.2.tar.gz (19.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pacs008_mcp-0.0.2-py3-none-any.whl (17.8 kB view details)

Uploaded Python 3

File details

Details for the file pacs008_mcp-0.0.2.tar.gz.

File metadata

  • Download URL: pacs008_mcp-0.0.2.tar.gz
  • Upload date:
  • Size: 19.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pacs008_mcp-0.0.2.tar.gz
Algorithm Hash digest
SHA256 b948721bf84520c02cb55772dea4165b66b198a2ed7e0f8688b5271d84b3b97a
MD5 6ae331646bf1134fc4ff90d0c4e72e4c
BLAKE2b-256 96e842a25f8d3a54e7cfdedfa82deab16d5c4474c3329c235ec0f2ea83bc47be

See more details on using hashes here.

Provenance

The following attestation bundles were made for pacs008_mcp-0.0.2.tar.gz:

Publisher: release.yml on sebastienrousseau/pacs008-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pacs008_mcp-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: pacs008_mcp-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 17.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pacs008_mcp-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b7895f26f017bdc9fe03812b8099064a348d884d209636fac97149435185d182
MD5 5261b8327403e0166185c2d03796cc38
BLAKE2b-256 d62a7228806d4fbe0d3b933bcac518326a120d192a3f7a1975f89a334865d212

See more details on using hashes here.

Provenance

The following attestation bundles were made for pacs008_mcp-0.0.2-py3-none-any.whl:

Publisher: release.yml on sebastienrousseau/pacs008-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page