projects_by_country
Pack: worldbank-projects · Endpoint: https://gateway.pipeworx.io/worldbank-projects/mcp
List a country’s World Bank projects (newest board-approval first) filtered by status. Returns the compact project shape with financing, sectors, and dates. Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
country_code | string | yes | ISO-2 country code, e.g. “KE” (Kenya), “BR” (Brazil), “NG” (Nigeria). |
status | string | no | Status filter (default “Active”): “Active”, “Closed”, “Pipeline”, or “Dropped”. |
limit | number | no | Max projects to return (default 15, max 30). |
Example call
Arguments
{
"country_code": "BR",
"status": "Active",
"limit": 15
}
curl
curl -X POST https://gateway.pipeworx.io/worldbank-projects/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"projects_by_country","arguments":{"country_code":"BR","status":"Active","limit":15}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('projects_by_country', {
"country_code": "BR",
"status": "Active",
"limit": 15
});
More examples
{
"country_code": "IN"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"worldbank-projects": {
"url": "https://gateway.pipeworx.io/worldbank-projects/mcp"
}
}
}
See Getting Started for client-specific install steps.