dataflow_structure
Pack: ilostat · Endpoint: https://gateway.pipeworx.io/ilostat/mcp
Get the structure (Data Structure Definition) of one ILOSTAT dataset: its ordered dimensions and, for each, the valid codes. Use this to learn how to build the dot-separated SDMX key for get_data. The key positions correspond to the dimensions in order; an empty position is a wildcard. Common dimensions are REF_AREA (ISO3 country code, e.g. “USA”, “FRA”), FREQ (A=annual, Q=quarterly, M=monthly), SEX, AGE, and MEASURE. Always call this before get_data. Example: dataflow_structure({ dataflow_id: “DF_SDG_0852_SEX_AGE_RT” }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
dataflow_id | string | yes | ILOSTAT dataflow id from list_dataflows, e.g. “DF_SDG_0852_SEX_AGE_RT”. |
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":"dataflow_structure","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.