sweden_latest_figure
Pack: scb-se · Endpoint: https://gateway.pipeworx.io/scb-se/mcp
A Swedish headline statistic as a NUMBER, for the latest month or for a month you name — “what is inflation in Sweden”, “Swedish CPI in June 2026”. One call — “what is inflation in Sweden”, “Swedish CPI right now”. Returns the figure, its unit, the exact month it refers to, and the SCB table it came from. Use this when the question asks for a number; use scb_se_subjects only when the question asks what statistics exist. Covers Swedish consumer prices today: inflation (CPI annual change) and the CPI index level.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
indicator | string | yes | Which figure: “inflation” for the CPI annual change in percent, or “cpi” for the CPI index level (2020=100). Common phrasings are understood — “inflation rate”, “consumer prices”, “kpi”. |
period | string | no | Optional month, as “2026M06” or “2026-06” or “June 2026”. Omit for the most recent published month. If the month you name has not been published yet, the response says so and names the latest month that has. |
Example call
Arguments
{
"indicator": "inflation"
}
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":"sweden_latest_figure","arguments":{"indicator":"inflation"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sweden_latest_figure', {
"indicator": "inflation"
});
More examples
{
"indicator": "inflation",
"period": "2026M06"
}
{
"indicator": "cpi"
}
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.