Czech Statistical Office
live DataCzech Statistical Office (Český statistický úřad, ČSÚ) open-data MCP.
Tools
list_datasets Browse the Czech Statistical Office (ČSÚ) open-data catalog of datasets ('datové sady').
No parameters required.
Try it
dataset_detail Full catalog metadata for one ČSÚ dataset by id (kod): description, keywords, indicators (ukazatele),
No parameters required.
Try it
data_summary Cheap content summary for a ČSÚ dataset from the data layer: number of data cells (pocetUdaju),
No parameters required.
Try it
get_data Fetch the actual observations/values for a ČSÚ dataset as JSON-stat 2.0 (dimensions in `id`/`dimension`,
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/czso-cz/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/czso-cz/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"list_datasets","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("list_datasets", {}); // Or ask in plain English:
const answer = await px.ask("czech statistical office (český statistický úřad, čsú) open-data mcp");