list_dataflows

Pack: statec-lu · Endpoint: https://gateway.pipeworx.io/statec-lu/mcp

Browse or keyword-search STATEC (Luxembourg statistics) datasets, called “dataflows”. Each result has an id (e.g. “DF_A1100”, the dataflowRef you pass to get_data / dataflow_structure) and an English name plus a short description (publication date, periodicity, author, category). STATEC publishes hundreds of datasets, so pass query to filter unless you really want the whole catalog. Example: list_dataflows({ query: “population” }) or list_dataflows({ query: “unemployment” }).

Parameters

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

Example call

Arguments

{
  "query": "population"
}

curl

curl -X POST https://gateway.pipeworx.io/statec-lu/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_dataflows","arguments":{"query":"population"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

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

Connect

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

{
  "mcpServers": {
    "statec-lu": {
      "url": "https://gateway.pipeworx.io/statec-lu/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 31, 2026