get_project

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

Get the fuller record for a single World Bank project by its project id (e.g. “P006553”, “P501648”): financing breakdown, implementing agency, borrower, sectors, themes, and the project development objective / abstract. Keyless.

Parameters

NameTypeRequiredDescription
idstringyesWorld Bank project id, e.g. “P006553” or “P501648”. Find ids via search_projects.

Example call

Arguments

{
  "id": "P006553"
}

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":"get_project","arguments":{"id":"P006553"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_project', {
  "id": "P006553"
});

More examples

{
  "id": "P501648"
}

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