subjects
Pack: scb-se · Endpoint: https://gateway.pipeworx.io/scb-se/mcp
Browse Statistics Sweden (SCB) PxWeb subject tree; pass a sub-path like “BE/BE0101” to drill down, or omit for root subjects. Returns child nodes with names and table counts.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
path | string | no | Sub-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.