worldpop_task_status
Pack: worldpop · Endpoint: https://gateway.pipeworx.io/worldpop/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/worldpop_task_status for the schema, then POST the same URL with its arguments for the data.
Check or collect a WorldPop stats job by its task id. WorldPop runs polygon statistics asynchronously; pass the taskid returned by worldpop_stats_polygon (with runasync) to get the state and, once finished, the population result. Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
taskid | string | yes | Task id from worldpop_stats_polygon, e.g. “a684d415-9546-5242-85e9-6cf22992eb5e”. |
Example call
Arguments
{
"taskid": "bf5ef10b-682a-5849-94c7-2d3787389a4e"
}
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_task_status","arguments":{"taskid":"bf5ef10b-682a-5849-94c7-2d3787389a4e"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('worldpop_task_status', {
"taskid": "bf5ef10b-682a-5849-94c7-2d3787389a4e"
});
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.