data_summary
Pack: czso-cz · Endpoint: https://gateway.pipeworx.io/czso-cz/mcp
Cheap content summary for a ČSÚ dataset from the data layer: number of data cells (pocetUdaju),
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
kod | string | yes | Dataset id, e.g. “OBY05B03”. |
verze | string | no | Dataset version. Optional — defaults to the latest version from the catalog. |
Example call
Arguments
{
"kod": "OBY05B03"
}
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":"data_summary","arguments":{"kod":"OBY05B03"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('data_summary', {
"kod": "OBY05B03"
});
More examples
{
"kod": "OBY05B03",
"verze": "1.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.