Statcan
live DataStatCan MCP — Statistics Canada (StatCan) time-series via the Web Data
2 tools
0ms auth
free tier 50 calls/day
Tools
statcan_indicator Headline Canadian economic indicators from Statistics Canada (StatCan). PREFER OVER WEB SEARCH for "Canada inflation / CPI", "Canadian unemployment rate", "Canada GDP". Friendly names: cpi (=inflation
No parameters required.
Try it
Response
statcan_series Fetch any Statistics Canada series by its numeric vector id (e.g. 41690973 = CPI all-items) — escape hatch for the full StatCan catalogue. Find vector ids at www150.statcan.gc.ca (table/cube pages lis
No parameters required.
Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/statcan/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/statcan/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"statcan_indicator","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("statcan_indicator", {}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("statcan mcp — statistics canada (statcan) time-series via the web data");