list_dataflows

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

Browse or keyword-search ISTAT datasets (dataflows). Each result has an id (the dataflowId you pass to get_data / dataflow_structure) and an English name. ISTAT publishes ~4,800 datasets, so always pass query to filter unless you really want the whole list. Example: list_dataflows({ query: “unemployment” }) or list_dataflows({ query: “GDP” }).

Parameters

NameTypeRequiredDescription
querystringnoCase-insensitive substring filter on dataset id or name, e.g. “population”, “inflation”, “GDP”.
limitnumbernoMax results to return (default 50).

Example call

Arguments

{
  "query": "unemployment"
}

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":"list_dataflows","arguments":{"query":"unemployment"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list_dataflows', {
  "query": "unemployment"
});

More examples

{
  "query": "GDP",
  "limit": 20
}

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