Connects Claude to Norges Bank's SDMX data feeds for Norwegian economic data. Exposes one main tool to list available data flows, which returns dimension keys you can use to pull specific series. The gateway approach means you can either query directly or use natural language via ask_pipeworx to have it pick the right parameters. Useful when you need current or historical exchange rates and interest rate data from Norway's central bank without scraping their site or wrestling with SDMX schemas yourself. Part of a larger gateway that bundles 250+ data sources, so you can add just this or connect to the full collection.
Norges Bank (Norway's central bank) MCP — exchange rates, interest rates,
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
list_flows | List the Norges Bank SDMX data flows available through this pack, with the dimension order of each key. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"norges-bank": {
"url": "https://gateway.pipeworx.io/norges-bank/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 Norges Bank data" })
The gateway picks the right tool and fills the arguments automatically.
MIT