idb_search_awards

Pack: idb · Endpoint: https://gateway.pipeworx.io/idb/mcp

Search Inter-American Development Bank (IDB) contract award data — which firms and individual consultants were awarded contracts under IDB-financed projects, with contract amount, sector, borrower country, and dates. ~159,000 awards. Filter by country, awarded firm name, sector, and contract year. Note: many individual-consultant contracts record the firm as “Not Available” by design (the consultant is not a named firm). Keyless, queried live against the same data as IDB’s 70MB awards CSV — no download needed.

Parameters

NameTypeRequiredDescription
countrystringnoBorrowing country, e.g. “Colombia”, “Bolivia”, “Ecuador”. Partial/case-insensitive match.
firmstringnoAwarded firm name (partial/case-insensitive), e.g. “Deloitte”, “Odebrecht”.
sectorstringnoSector keyword, e.g. “Rural Electrification”, “Health Services”, “Water Supply”.
yearnumber,stringnoContract signature year, e.g. 2025.
keywordstringnoKeyword against the project name.
limitnumber,stringnoMax awards to return (1-50). Default 15.

Example call

Arguments

{
  "firm": "Deloitte",
  "limit": 5
}

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_search_awards","arguments":{"firm":"Deloitte","limit":5}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('idb_search_awards', {
  "firm": "Deloitte",
  "limit": 5
});

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.

Regenerated from source · build September 13, 2026