get_series_data
Pack: cbs-il · Endpoint: https://gateway.pipeworx.io/cbs-il/mcp
Fetch the actual time-series observations for a CBS series by its numeric series id (the leaf id found via catalog_browse). Returns metadata (subject path, unit, prices, last update) plus an array of observations with TimePeriod (e.g. “2026-04”) and Value. Covers Israeli economic and demographic statistics. Optionally filter by start_period / end_period (YYYY-MM or YYYY).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
series_id | integer | yes | Numeric series id, e.g. 1 (foreign-trade deficit). |
start_period | string | no | Earliest period, e.g. “2025-01” or “2024”. |
end_period | string | no | Latest period, e.g. “2026-06”. |
lang | string | no | Content language. Default “en”. |
Example call
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":"get_series_data","arguments":{}}}'
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.