subjects

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

CATALOGUE of what Statistics Sweden (SCB) publishes — the subject tree of Swedish official statistics, returned as a browsable list of subjects and table paths. Use when the question is which Swedish statistics exist or where a table lives, then scb_se_table_meta and scb_se_query_table to read figures from it. For a Swedish figure itself — inflation, CPI, and the value for a given month — sweden_latest_figure answers in one call. This listing carries no observations and no time period, so it cannot answer a question that names a month or a year. Sweden only: Canadian figures are statcan, Denmark dst-dk, Estonia stat-ee.

Parameters

NameTypeRequiredDescription
pathstringnoSub-path under /ssd/ (default empty = root).

Example call

Arguments

{
  "path": ""
}

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":"subjects","arguments":{"path":""}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('subjects', {
  "path": ""
});

More examples

{
  "path": "BE/BE0101"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Subject tree node containing child items and metadata"
}

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.

Regenerated from source · build August 21, 2026