subjects
Pack: statfin-fi · Endpoint: https://gateway.pipeworx.io/statfin-fi/mcp
Browse the Statistics Finland (StatFin) subject tree of Finnish official statistics — population, education, employment, consumer prices, housing, health and national accounts tables published by Tilastokeskus. Entries with type “l” are folders (drill in with their id, e.g. “vkour” for educational structure of population, “khi” for the consumer price index); type “t” are tables whose id is the bare 4-character code plus “.px” (e.g. “15ig.px”), which you pass to table_meta and query_table as “folder/table.px” — for example “vkour/15ig.px”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
path | string | no | Sub-path under /StatFin/ (default empty = root list of ~135 subject folders). e.g. “vkour” or “khi”. |
Example call
Arguments
{
"path": ""
}
curl
curl -X POST https://gateway.pipeworx.io/statfin-fi/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": "vkour"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"statfin-fi": {
"url": "https://gateway.pipeworx.io/statfin-fi/mcp"
}
}
}
See Getting Started for client-specific install steps.