list_datasets

Pack: czso-cz · Endpoint: https://gateway.pipeworx.io/czso-cz/mcp

Browse the Czech Statistical Office (ČSÚ) open-data catalog of datasets (‘datové sady’).

Parameters

NameTypeRequiredDescription
querystringnoCase-insensitive substring matched against the Czech title (nazev), e.g. “rozvody”, “inflace”, “mzdy”.
limitnumbernoMax rows to return (default 25, max 200).
offsetnumbernoRows to skip for paging (default 0).

Example call

Arguments

{
  "query": "inflace"
}

curl

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "query": "mzdy",
  "limit": 50,
  "offset": 0
}

Connect

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

{
  "mcpServers": {
    "czso-cz": {
      "url": "https://gateway.pipeworx.io/czso-cz/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 31, 2026