list_dataflows
Pack: ilostat · Endpoint: https://gateway.pipeworx.io/ilostat/mcp
Browse or keyword-search ILOSTAT datasets (dataflows) from the International Labour Organization. Each result has an id (the dataflowId you pass to get_data / dataflow_structure) and an English name. ILO publishes ~1,200 datasets covering employment, unemployment, labour force participation, wages, hours worked, informality, working poverty, child labour, and occupational safety. Always pass query to filter unless you really want the whole list. Example: list_dataflows({ query: “unemployment rate” }) or list_dataflows({ query: “minimum wage” }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Case-insensitive substring filter on dataset id or name, e.g. “unemployment”, “wages”, “labour force”. |
limit | number | no | Max results to return (default 50). |
Example call
curl -X POST https://gateway.pipeworx.io/ilostat/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_dataflows","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ilostat": {
"url": "https://gateway.pipeworx.io/ilostat/mcp"
}
}
}
See Getting Started for client-specific install steps.