sanctions_screen

Pack: sanctions-screening · Endpoint: https://gateway.pipeworx.io/sanctions-screening/mcp

Screen a person, company, vessel, or aircraft name against the US restricted-party lists — OFAC SDN sanctions, Sectoral Sanctions (SSI), Chinese Military-Industrial Complex (CMIC), BIS Entity List / Denied Persons / Military End User, State ITAR Debarred, and the DHS UFLPA Entity List for Xinjiang forced-labor import bans (~26k entries, synced daily). Fuzzy name matching with a 0-1 relevance score, matched aliases, programs, addresses, and which list each hit is on. Use for KYB / KYC / AML / export-control checks, and to check whether a supplier is subject to the forced-labor import ban before importing. Returns an empty matches array when the name is clear. Handles CYRILLIC names — Russian, Ukrainian, Serbian: the lists are held in Latin script, so a Cyrillic name is romanised into a small candidate set (both conventions: г as g or h, и as i or y, я as ya or ia) and every form is screened, with matched_form on each hit naming the spelling that produced it. So “Сбербанк” returns the same matches as “Sberbank”. A name in a script we do NOT romanise (Greek, Arabic, Hebrew, Han, Japanese, Korean, Devanagari, Thai) still cannot be compared, and is refused with clear:null / screened:false rather than reported clear — pass the Latin transliteration used on the list.

Parameters

NameTypeRequiredDescription
namestringyesPerson, company, vessel, or aircraft name to screen, e.g. “Rosneft” or “Huawei Technologies”.
liststringnoRestrict to one list code: ${Object.keys(LISTS).join(’ | ’)}.
typestringnoRestrict by entry type: Entity | Individual | Vessel | Aircraft.
countrystringno2-letter country code to filter matches by address/nationality, e.g. “CN”, “RU”, “IR”.
limitnumber,stringnoMax matches (1-50, default 10).

Example call

Arguments

{
  "name": "Rosneft"
}

curl

curl -X POST https://gateway.pipeworx.io/sanctions-screening/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"sanctions_screen","arguments":{"name":"Rosneft"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('sanctions_screen', {
  "name": "Rosneft"
});

More examples

{
  "name": "Сбербанк"
}
{
  "name": "Huawei Technologies",
  "country": "CN",
  "type": "Entity",
  "limit": 5
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "sanctions-screening": {
      "url": "https://gateway.pipeworx.io/sanctions-screening/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 10, 2026