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
| Name | Type | Required | Description |
|---|---|---|---|
country | string | no | Borrowing country, e.g. “Colombia”, “Bolivia”, “Ecuador”. Partial/case-insensitive match. |
firm | string | no | Awarded firm name (partial/case-insensitive), e.g. “Deloitte”, “Odebrecht”. |
sector | string | no | Sector keyword, e.g. “Rural Electrification”, “Health Services”, “Water Supply”. |
year | number,string | no | Contract signature year, e.g. 2025. |
keyword | string | no | Keyword against the project name. |
limit | number,string | no | Max 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.