search_projects

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

Search World Bank development projects by free text and/or country and status. Returns financing, sectors, lending instrument, approval/closing dates, and status for each match. Keyless. Provide query and/or country_code.

Parameters

NameTypeRequiredDescription
querystringnoFree-text search, e.g. “rural water supply”, “climate resilience”, “rural electrification”.
country_codestringnoISO-2 country code to filter by, e.g. “BR” (Brazil), “KE” (Kenya), “IN” (India).
statusstringnoProject status filter: “Active”, “Closed”, “Pipeline”, or “Dropped”.
limitnumbernoMax projects to return (default 10, max 25).

Example call

Arguments

{
  "query": "rural water supply",
  "country_code": "KE",
  "limit": 10
}

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":"search_projects","arguments":{"query":"rural water supply","country_code":"KE","limit":10}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_projects', {
  "query": "rural water supply",
  "country_code": "KE",
  "limit": 10
});

More examples

{
  "query": "climate resilience",
  "status": "Active",
  "limit": 15
}

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.

Regenerated from source · build September 9, 2026