MCP server exposing 2 tools for sanctions-io.
This URL is a JSON-RPC 2.0 endpoint over HTTP. Issue POST requests with a JSON-RPC body. Browsers and search crawlers land here on GET.
POST https://gateway.pipeworx.io/sanctions-io/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
sanctions_search — Screen a single name against global sanctions, PEP, and watchlists (OFAC, EU, UN, FATF, criminal, adverse media) for AML compliance. Returns scored entity matches with list metadata. Example: sanctions_search({ name: "Vladimir Putin", entity_type: "individual", min_score: 0.9, _apiKey: "your-key" })sanctions_bulk — Batch-screen up to 10,000 records against sanctions/PEP/watchlists in one request. Pass a `records` array of objects (each with a name, plus optional entity_type/external_identifier/date_of_birth/identifier/country). Top-level min_score/data_source/entity_type act as defaults applied to any record that omits them. Example: sanctions_bulk({ records: [{ name: "Vladimir Putin", external_identifier: "cust-1" }, { name: "Acme Corp", external_identifier: "cust-2" }], min_score: 0.9, _apiKey: "your-key" })Code samples (curl / TypeScript / one-click client install), schemas, and the live playground are on the pack page:
https://pipeworx.io/packs/sanctions-io/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io