Connects Claude to Statistics Norway's PxWebApi for querying official Norwegian statistics and demographic data. Exposes a single tool for fetching table metadata, which gives you variable definitions, dimensions, and valid values for any SSB table using its numeric ID. The gateway handles natural language queries through ask_pipeworx, so you can request Norwegian economic indicators, population stats, or labor market data without manually constructing API calls. Part of the larger Pipeworx ecosystem that bundles 673+ data sources behind one MCP gateway. Useful when you need authoritative Norwegian government data for analysis, reporting, or research without leaving your AI workflow.
Statistics Norway (SSB) PxWebApi MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
table_meta | Table definition (variables/dimensions and valid values). id is the numeric SSB table id, e.g. "07459". |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"ssb-no": {
"url": "https://gateway.pipeworx.io/ssb-no/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 Ssb No data" })
The gateway picks the right tool and fills the arguments automatically.
MIT