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
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Case-insensitive substring filter on dataset id or name, e.g. “population”, “inflation”, “GDP”. |
limit | number | no | Max results to return (default 50). |
Example call
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":{}}}'
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.