wb_procurement_detail
Pack: worldbank-procurement · Endpoint: https://gateway.pipeworx.io/worldbank-procurement/mcp
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, submission deadline, procurement method, contact person/organization/email/phone, the full notice text (bidding instructions, eligibility, award details for contract awards), and the public notice URL.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | World Bank procurement notice id, e.g. “OP00457469”. Find ids via wb_procurement_search. |
Example call
Arguments
{
"id": "OP00457469"
}
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_detail","arguments":{"id":"OP00457469"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('wb_procurement_detail', {
"id": "OP00457469"
});
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.