Connects Claude to Statistics Finland's PxWeb API, the official source for Finnish demographic, economic, and social statistics. You get two tools: table_meta to inspect table schemas and valid dimension values, and query_table to pull actual data using PxWeb query objects. Runs through the Pipeworx gateway, which means you can either hit the StatFin endpoint directly or use the unified gateway that wraps 673+ data sources. The ask_pipeworx tool lets you skip writing query objects and just ask questions in plain English. Useful when you need authoritative Finnish government data for analysis, visualization, or research without leaving your AI workflow.
Statistics Finland (StatFin) PxWeb MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
table_meta | Table definition (dimensions, valid values). path must point at a ".px" table, e.g. "khi/statfin_khi_pxt_11xs.px". |
query_table | Pull data from a ".px" table. body is a PxWeb query object. path e.g. "khi/statfin_khi_pxt_11xs.px". |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"statfin-fi": {
"url": "https://gateway.pipeworx.io/statfin-fi/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Statfin Fi data" })
The gateway picks the right tool and fills the arguments automatically.
MIT