catalog_browse
Pack: cbs-il · Endpoint: https://gateway.pipeworx.io/cbs-il/mcp
Browse the CBS time-series catalog. With no subject_id, returns the top-level subjects (Foreign Trade, Population, Balance of Payments, Consumer Price Index, etc.) — each with a numeric path id. Pass that id back as subject_id to drill into a subject’s full set of leaf series paths. The catalog is hierarchical; each catalog entry has a ‘path’ breadcrumb array and a ‘name’. Use this to discover what’s available before calling get_series_data.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
subject_id | integer | no | Top-level subject id (from a no-arg call, e.g. 8 = Foreign Trade, 2 = Population). Omit to list the top-level subjects. |
page | integer | no | Page number for paginated leaf lists (default 1, page size 100). |
lang | string | no | Content language. Default “en”. |
Example call
Arguments
{
"subject_id": 8
}
curl
curl -X POST https://gateway.pipeworx.io/cbs-il/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"catalog_browse","arguments":{"subject_id":8}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('catalog_browse', {
"subject_id": 8
});
More examples
{
"page": 1,
"lang": "en"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"cbs-il": {
"url": "https://gateway.pipeworx.io/cbs-il/mcp"
}
}
}
See Getting Started for client-specific install steps.