dataflow_structure

Pack: istat-it · Endpoint: https://gateway.pipeworx.io/istat-it/mcp

Get the structure (Data Structure Definition) of one ISTAT 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. Example: dataflow_structure({ dataflow_id: “101_1015” }).

Parameters

NameTypeRequiredDescription
dataflow_idstringyesISTAT dataflow id from list_dataflows, e.g. “101_1015”.

Example call

Arguments

{
  "dataflow_id": "101_1015"
}

curl

curl -X POST https://gateway.pipeworx.io/istat-it/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dataflow_structure","arguments":{"dataflow_id":"101_1015"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('dataflow_structure', {
  "dataflow_id": "101_1015"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "istat-it": {
      "url": "https://gateway.pipeworx.io/istat-it/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 28, 2026