Reconcile camt.053 statements vs expected pain.001 payments with explainable matching.
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.
A [Model Context Protocol][mcp] server that matches expected payments
(from pain.001 credit transfers) against observed booked entries (from a
camt.053 statement) and returns an explainable reconciliation β exact
matches, short/over payments, split settlements (one-to-many), batch credits
(many-to-one), and the residual unmatched items on each side, every match
carrying a score and the reasons it was made.
Latest release: v0.0.1 β 7 MCP tools over stdio, pure-Python matching engine, deterministic sandbox test-mode, for Python 3.10+. Part of the ISO 20022 MCP suite: you own both sides of the match.
Reconciliation is the treasury team's daily pain: did the money we expected
actually arrive, and which invoice does each credit belong to? It is rarely
one-to-one β customers underpay, settle an invoice in instalments, or a payout
aggregator sends one lump covering a dozen receivables. reconcile-mcp does
this matching as an agent tool, and β critically for finance β shows its
work: every pairing comes with a numeric score and a plain list of the
signals (reference, amount, date, counterparty) that drove it.
reconcile-mcp is the reconciliation workflow of eight coordinated,
vendor-neutral MCP servers that together cover the ISO 20022 bank-statement
workflow and the November 2026 structured-address cutover, plus a high-level orchestration layer β readiness scoring, clearing-profile linting, and audit evidence β statement depth,
whole-catalogue routing, reconciliation, multi-format ingestion, and address
remediation. Dependency ranges are kept aligned across the suite,
so the servers co-install cleanly in a single Python environment: start with
one, add the rest as your workflow grows.
| Server | Scope | Surface | Install | Use it when |
|---|---|---|---|---|
[camt053-mcp][camt053-mcp] | ISO 20022 camt.053/camt.052 bank statements: parse, validate, filter, reverse; MT940/MT942 migration; CBPR+ readiness; journal export | 22 MCP tools Β· 4 prompts Β· 3 resources | pip install camt053-mcp | You work with bank-to-customer statements end to end β the suite's flagship |
[iso20022-mcp][iso20022-mcp] | Unified gateway: search / describe / validate / generate / parse meta-tools routed across the pain Β· pacs Β· camt Β· acmt families | 7 meta-tools | pip install "iso20022-mcp[all]" | You want one entry point to every message family |
reconcile-mcp | Matches expected pain.001 payments against observed camt.053 entries β exact, partial, one-to-many, many-to-one, every match scored and explained | 7 MCP tools | pip install reconcile-mcp | You need explainable statement/payment reconciliation β this package |
[bankstatementparser-mcp][bsp-mcp] | Multi-format statement ingestion: ISO 20022 CAMT.053 and pain.001, SWIFT MT940, OFX/QFX, CSV | 5 MCP tools Β· 1 prompt Β· 1 resource | pip install bankstatementparser-mcp | Your statements arrive in mixed or legacy formats |
[structured-address-fix-mcp][saf-mcp] | ISO 20022 postal-address classification, assessment & remediation for the November 2026 structured-address cutover (pacs.008 / pain.001 debtor & creditor addresses) | 9 MCP tools | pip install structured-address-fix-mcp | You need debtor/creditor addresses cliff-ready ahead of 14 Nov 2026 |
iso20022-readiness-suite-mcp | Orchestration gateway: detect β structurally validate β clearing-profile lint β readiness score, plus automated remediation and pacs.002 bank-response simulation β a meta-client over the foundational servers | 4 MCP tools | pip install iso20022-readiness-suite-mcp | You want one high-level readiness / orchestration entry point over the suite |
iso20022-bank-profile-mcp | Manages, validates and serves bank-specific clearing profiles / rule packs (CBPR+, SEPA_Instant, FedNow, Generic); premium rule-pack entitlement gating | 4 MCP tools | pip install iso20022-bank-profile-mcp | You lint payments against your own institution's market practice |
iso20022-evidence-pack-mcp | Compiles readiness findings, remediation diffs and simulated responses into a sealed, Ed25519-signable audit evidence pack | 6 MCP tools | pip install iso20022-evidence-pack-mcp | You need tamper-evident audit / certification artifacts |
In one line each: camt053-mcp is the bank-statement flagship (deepest
camt.05x surface, stdio + authenticated streamable HTTP);
iso20022-mcp is the generic message toolkit (a handful of verbs over
the whole catalogue); reconcile-mcp is the reconciliation workflow
(did the money we expected actually arrive?);
bankstatementparser-mcp is the ingestion layer (many formats in, one
transaction shape out); and structured-address-fix-mcp is the
postal-address specialist (debtor/creditor addresses cliff-ready for the
Nov 2026 cutover).
The suite also includes per-family servers β [pain001-mcp][pain001-mcp]
(credit transfer initiation), [pacs008-mcp][pacs008-mcp] (FI-to-FI credit
transfers), and [acmt001-mcp][acmt001-mcp] (account management) β whose
parsed output feeds straight into this server's normalize_* adapters.
MCP client config (e.g. Claude Desktop claude_desktop_config.json):
The server ships a sandbox test-mode: deterministic scenarios so you can run the whole flow with no setup and no real cash data. One call gets you a full, explainable result:
returns a realistic mixed close β one clean match, one short payment, one split settlement, and an unexpected credit correctly left unmatched:
List every scenario with list_sandbox_scenarios; load one to inspect or edit
its inputs with load_sandbox_scenario.
Records are small canonical objects β id and amount required, everything
else optional and used to sharpen matching:
Already using the rest of the suite? Feed parsed output straight in β the adapters map it for you:
normalize_pain001(document) β the expected side, from
[pain001-mcp][pain001-mcp].normalize_camt053(document) β the observed side, from
[camt053-mcp][camt053-mcp].Then call reconcile(expected, observed).
reconcile β Match expected payments against observed entries; full explainable report.explain_match β Score a single expected/observed pair with a per-signal breakdown (tuning aid).normalize_pain001 β Adapt parsed pain.001 output into canonical expected records.normalize_camt053 β Adapt parsed camt.053 output into canonical observed records.list_sandbox_scenarios β List the built-in test-mode scenarios and magic references.load_sandbox_scenario β Return one scenario's expected/observed inputs to inspect or edit.run_sandbox_scenario β Load a scenario and reconcile it in one call β the fastest first run.Each candidate pair is scored on four weighted signals, then classified:
Assignment is greedy, highest-score-first and fully deterministic (a total tiebreak order), so the same inputs always produce the same result. Residuals are then tested for one-to-many (a bounded subset-sum: one expected settled by several entries) and many-to-one (one entry covering several expected).
Tune any of it via the options argument: abs_tol / rel_tol,
date_window_days, high_threshold, review_threshold, currency_strict,
enable_one_to_many, max_combination.
Licensed under the Apache License, Version 2.0.
mcp-name: io.github.sebastienrousseau/reconcile-mcp
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/reconcile-mcp)<a href="https://allmcps.com/mcp/reconcile-mcp"><img src="https://allmcps.com/api/badge/reconcile-mcp?style=directory" alt="Reconcile MCP on AllMCPs" /></a>