idb_check_mdb_debarment
Pack: idb · Endpoint: https://gateway.pipeworx.io/idb/mcp
Check whether a person or firm name appears on the multilateral development bank cross-debarment list — IDB’s own debarment/sanctions list PLUS the cross-debarred lists of the World Bank Group, Asian Development Bank, African Development Bank, and EBRD, which the five banks mutually enforce. Answers “is this vendor debarred” for procurement due-diligence. Matching is accent- and case-insensitive (handles Spanish/Portuguese diacritics like “González” vs “Gonzalez”) and requires every word of the query name to appear in a record — so a full name narrows results, a bare surname broadens them. Returns each match’s entity type, nationality, sanction dates, prohibited practice, and which bank’s list it came from. Keyless, ~1,300 records, queried live.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | Person or firm name to check, e.g. “Ricardo Reynoso Gonzalez” or “Consultora Tecnodinamica”. Accents optional. |
entity_type | string | no | Optional filter: “Individual” or “Firm”. |
source | string | no | Optional filter to one issuing bank, e.g. “IDB”, “WBG”, “ADB”, “AfDB”, “EBRD” (partial match against the source label). |
limit | number,string | no | Max matches to return (1-50). Default 10. |
Example call
Arguments
{
"name": "Ricardo Reynoso Gonzalez"
}
curl
curl -X POST https://gateway.pipeworx.io/idb/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"idb_check_mdb_debarment","arguments":{"name":"Ricardo Reynoso Gonzalez"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('idb_check_mdb_debarment', {
"name": "Ricardo Reynoso Gonzalez"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"idb": {
"url": "https://gateway.pipeworx.io/idb/mcp"
}
}
}
See Getting Started for client-specific install steps.