wb_procurement_awards

Pack: worldbank-procurement · Endpoint: https://gateway.pipeworx.io/worldbank-procurement/mcp

Search World Bank contract awards — which contracts were awarded under World Bank-financed development projects (300k+ award notices across developing countries). Filter by full-text keyword and/or country to see recently awarded goods, civil works, and consulting contracts, each with project, bid reference, procurement method, award publication date, and a public notice URL (the notice detail page names the awarded supplier). Newest first. Keyless.

Parameters

NameTypeRequiredDescription
querystringnoFull-text keyword, e.g. “bridge construction”, “audit services”, “medical equipment”. Optional.
countrystringnoCountry name (plain English), e.g. “Kenya”, “Ethiopia”, “Vietnam”. Optional.
limitnumber,stringnoNumber of awards to return (1-50). Default 10.
offsetnumber,stringnoResult offset for pagination. Default 0.

Example call

Arguments

{
  "query": "bridge construction",
  "country": "Ethiopia",
  "limit": 10
}

curl

curl -X POST https://gateway.pipeworx.io/worldbank-procurement/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"wb_procurement_awards","arguments":{"query":"bridge construction","country":"Ethiopia","limit":10}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('wb_procurement_awards', {
  "query": "bridge construction",
  "country": "Ethiopia",
  "limit": 10
});

More examples

{
  "query": "medical equipment",
  "limit": 25,
  "offset": 0
}

Connect

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

{
  "mcpServers": {
    "worldbank-procurement": {
      "url": "https://gateway.pipeworx.io/worldbank-procurement/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 4, 2026