list_reference
Pack: worldbank-poverty · Endpoint: https://gateway.pipeworx.io/worldbank-poverty/mcp
Reference / metadata for the PIP dataset. table=“versions” lists available data releases & PPP rounds;
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
table | string | no | ”versions”, “aux_list”, or an auxiliary table name like “countries” | “regions” | “poverty_lines” | “indicators” | “dictionary”. Default “versions”. |
Example call
Arguments
{
"table": "countries"
}
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":"list_reference","arguments":{"table":"countries"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_reference', {
"table": "countries"
});
More examples
{
"table": "poverty_lines"
}
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.