scb_se_publishing_calendar
Pack: scb-se · Endpoint: https://gateway.pipeworx.io/scb-se/mcp
What Statistics Sweden (SCB) is SCHEDULED to publish and when \u2014 the official publishing calendar (publiceringskalender), returning each upcoming release with its statistical product, product code, reference period, publishing form and publishing date. Answers “what is SCB releasing next week”, “n\u00e4r publicerar SCB KPI”, “which Swedish statistics come out in September”. Also reads backwards over a date range you name, to list what was released between two dates. For the text of releases already out, use scb_se_statistical_news. Read from the SCB website calendar listing, so the field shapes depend on SCB markup rather than a published API contract.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
period | string | no | Forward1Week (default), Forward1Month, Forward3Months, Forward6Months, Forward1Year, Previous1Week, or Custom. Plain phrasings like “next month” are understood. |
from | string | no | Start date as YYYY-MM-DD. Supplying from/to selects the Custom period automatically; date ranges are honoured only in that mode. |
to | string | no | End date as YYYY-MM-DD. Required together with “from”. |
form | string | no | Publishing form: 0 all (default), 1 Database, 2 Publication, 3 Statistical news, 4 Tables and graphs. Words work too, e.g. “statistical news”. |
subject_areas | string | no | Comma-separated two-letter SCB subject-area codes to restrict to, e.g. “AM” (labour market), “PR” (prices), “BE” (population), “NR” (national accounts). |
sort_field | string | no | 1 product name, 2 publishing date (default), 3 publisher. |
sort_order | string | no | 0 ascending (default), 1 descending. |
limit | number | no | Maximum releases to return. Default 40, max 200. |
Example call
Arguments
{
"from": "2026-08-07",
"to": "2026-08-10",
"form": "statistical news"
}
curl
curl -X POST https://gateway.pipeworx.io/scb-se/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"scb_se_publishing_calendar","arguments":{"from":"2026-08-07","to":"2026-08-10","form":"statistical news"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('scb_se_publishing_calendar', {
"from": "2026-08-07",
"to": "2026-08-10",
"form": "statistical news"
});
More examples
{
"period": "Forward1Month",
"limit": 3
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"scb-se": {
"url": "https://gateway.pipeworx.io/scb-se/mcp"
}
}
}
See Getting Started for client-specific install steps.