3 hours ago
Ontology MCP Server turns raw ISO 20022 banking messages (pacs.008 payments, camt.056 cancellations, camt.029 responses) into a queryable knowledge graph that any AI agent can ask questions about.
Instead of grepping through XML files, you ask things like:
- "Find all transactions over $50K involving BLUEUSNY"
- "What's the full lifecycle of cancellation case X?"
- "Are there any anomalies in the loaded data?"
It supports 7 ISO 20022 message types, persistent RDF storage via Oxigraph, and runs with a single Docker command:
docker run ghcr.io/mrcholis/ontology-mcp
Built for banks, fintechs, payment processors, and anyone dealing with financial message flows.
Server Config
{
"mcpServers": {
"ontology": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/mrcholis/ontology-mcp"
]
}
}
}