get_observations

Pack: riksbank-se · Endpoint: https://gateway.pipeworx.io/riksbank-se/mcp

Time-series observations for one series over a date range. Pass a series ID and a from/to window (dates YYYY-MM-DD).

Parameters

NameTypeRequiredDescription
seriesIdstringyesSeries ID, e.g. “SEKEURPMI” (EUR/SEK) or “SECBREPOEFF” (policy rate).
fromstringyesRange start, YYYY-MM-DD, e.g. “2026-01-01”.
tostringyesRange end, YYYY-MM-DD, e.g. “2026-05-31”.

Example call

Arguments

{
  "seriesId": "SEKEURPMI",
  "from": "2026-01-01",
  "to": "2026-05-31"
}

curl

curl -X POST https://gateway.pipeworx.io/riksbank-se/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_observations","arguments":{"seriesId":"SEKEURPMI","from":"2026-01-01","to":"2026-05-31"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_observations', {
  "seriesId": "SEKEURPMI",
  "from": "2026-01-01",
  "to": "2026-05-31"
});

More examples

{
  "seriesId": "SECBREPOEFF",
  "from": "2025-06-01",
  "to": "2026-06-01"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "riksbank-se": {
      "url": "https://gateway.pipeworx.io/riksbank-se/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 31, 2026