Worldbank Procurement

live FinanceDeveloper

World Bank Procurement Notices MCP — global development tenders (keyless).

4 tools
0ms auth
free tier 50 calls/day

Tools

wb_procurement_by_country

List the latest World Bank procurement notices for one developing country — open tenders, invitations for bids, expressions of interest, and contract awards funded by World Bank international developm

No parameters required.

Try it
wb_procurement_awards

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 co

No parameters required.

Try it
wb_procurement_detail

Fetch one World Bank procurement notice by its notice id (e.g. "OP00457469", from wb_procurement_search results). Returns the full record: notice type and status, project, country, bid reference, subm

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/worldbank-procurement/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/worldbank-procurement/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"wb_procurement_search","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("wb_procurement_search", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("world bank procurement notices mcp — global development tenders (keyless)");