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.

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": "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 August 29, 2026