worldpop_datasets
Pack: worldpop · Endpoint: https://gateway.pipeworx.io/worldpop/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/worldpop_datasets for the schema, then POST the same URL with its arguments for the data.
List the WorldPop datasets and services the stats API exposes — which population surfaces (total counts, age/sex structures) can be summed over a polygon, with the description of what each covers. Keyless. Call this before worldpop_stats_polygon if you need something other than total population.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/worldpop/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"worldpop_datasets","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('worldpop_datasets', {});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"worldpop": {
"url": "https://gateway.pipeworx.io/worldpop/mcp"
}
}
}
See Getting Started for client-specific install steps.