dataflow_structure
Pack: abs-au · Endpoint: https://gateway.pipeworx.io/abs-au/mcp
For one ABS dataflow, return its ordered dimensions and the valid codes for each. Use this to build a dataKey for get_data: the key has one dot-separated position per dimension, in the order returned here. Call this before get_data.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
dataflowId | string | yes | Dataflow id from list_dataflows, e.g. “CPI”. |
maxCodesPerDimension | number | no | Cap codes listed per dimension to keep output small (default 50). |
Example call
Arguments
{
"dataflowId": "CPI"
}
curl
curl -X POST https://gateway.pipeworx.io/abs-au/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dataflow_structure","arguments":{"dataflowId":"CPI"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dataflow_structure', {
"dataflowId": "CPI"
});
More examples
{
"dataflowId": "ABS_REGIONAL_LGA2021",
"maxCodesPerDimension": 30
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"abs-au": {
"url": "https://gateway.pipeworx.io/abs-au/mcp"
}
}
}
See Getting Started for client-specific install steps.