get_poverty_regional

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

Aggregated World Bank poverty estimates at the regional/group level (not per-country).

Parameters

NameTypeRequiredDescription
yearstringnoReporting year (e.g. “2020”) or “all”. Default “all”.
povlinenumbernoPoverty line in $/day (2017 PPP). Common values: 2.15, 3.65, 6.85. Default 2.15.
group_bystringnoAggregation: “wb” geographic regions, “inc” income groups, “none” global total. Default “wb”.

Example call

Arguments

{
  "year": "2020",
  "povline": 2.15,
  "group_by": "wb"
}

curl

curl -X POST https://gateway.pipeworx.io/worldbank-poverty/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_poverty_regional","arguments":{"year":"2020","povline":2.15,"group_by":"wb"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_poverty_regional', {
  "year": "2020",
  "povline": 2.15,
  "group_by": "wb"
});

More examples

{
  "year": "all",
  "povline": 6.85,
  "group_by": "inc"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "worldbank-poverty": {
      "url": "https://gateway.pipeworx.io/worldbank-poverty/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 1, 2026