scb_se_statistical_news
Pack: scb-se · Endpoint: https://gateway.pipeworx.io/scb-se/mcp
What Statistics Sweden (SCB) has JUST PUBLISHED \u2014 the statistical news releases (statistiknyheter) from the last few days, with headline, summary, publication date and the statistical product each belongs to. Answers “vilka statistiknyheter har SCB publicerat de senaste 3 dagarna”, “what did Statistics Sweden publish this week”, “senaste statistiknyheterna fr\u00e5n SCB”. Swedish headlines by default; pass lang=“en” for the English titles. For releases still to come rather than already out, use scb_se_publishing_calendar. Read from the SCB website listing, so the field shapes depend on SCB markup rather than a published API contract.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
days | number | no | How many days back from today, e.g. 3 for “de senaste 3 dagarna”. Default 7. Ignored when from/to are given. |
from | string | no | Start of the window as YYYY-MM-DD, e.g. “2026-08-07”. |
to | string | no | End of the window as YYYY-MM-DD. Defaults to today. |
lang | string | no | ”sv” (default) for Swedish headlines, “en” for English. |
limit | number | no | Maximum news items to return. Default 50, max 200. |
Example call
Arguments
{
"days": 3
}
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_statistical_news","arguments":{"days":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('scb_se_statistical_news', {
"days": 3
});
More examples
{
"days": 3,
"lang": "en"
}
{
"from": "2026-08-07",
"to": "2026-08-10",
"lang": "en"
}
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.