mcp-statcan
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-statcanshow Canada's GDP data for the last 5 years"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
StatCan — Statistics Canada
Canada's national statistical office, via the free, keyless Web Data Service (WDS,
www150.statcan.gc.ca/t1/wds/rest). Covers the full cube (table) catalogue —
population, CPI/inflation, unemployment, GDP, trade, agriculture, and every other
official Canadian series — plus headline indicators pre-resolved to a vector id.
Part of Pipeworx — an MCP gateway connecting AI agents to 1683+ live data sources.
Two access patterns
Friendly / vector-based —
statcan_indicator(cpi, unemployment, gdp, population by geography) andstatcan_series(any series by numeric vector id, FRED-style).Cube-based —
statcan_list_cubes(catalogue),statcan_cube_metadata(dimensions + members for one cube),statcan_cube_vectors(enumerate the actual vector ids for a cube),statcan_cube_data(latest N observations at a coordinate),statcan_changed_series(daily change feed),statcan_csv_url(full-table CSV download link).
Related MCP server: pxweb-mcp
Table number → vector id, in two calls
Every StatCan question starts with a table (e.g. "32-10-0121-01", the egg
production table, or its 8-digit form 32100121). Neither the table number nor
statcan_cube_metadata hands you a vector id directly — metadata only gives
dimensions and their member lists. Use statcan_cube_vectors to bridge that:
statcan_cube_vectors({ product_id: "32100121", filters: { GEO: "Canada" } })
// -> rows: [{ vector_id: 61133, coordinate: "1.1.0.0.0.0.0.0.0.0",
// members: { Geography: "Canada", "Production and disposition": "Average number of layers" },
// frequency: "Monthly", terminated: false, series_title: "Canada;Average number of layers" }, ...]
statcan_series({ vector_id: "61133" })
// -> the actual observationsfilters keys match by case-insensitive substring against the cube's dimension
names (so GEO matches Geography); values match by substring against member
names. Dimensions left unfiltered include every member of that dimension —
for a cube with many dimensions that's a large cross-product, so page with
limit/page (default 100/page, max 500) rather than pulling everything at once.
total_combinations and has_more/next_page in the response tell you whether
you're seeing all of it.
statcan_cube_metadata does not return vector ids — it only lists dimensions
and members, which is why statcan_cube_vectors exists.
product_id accepts either form
The 8-digit WDS product id:
32100121The public table number:
32-10-0121-01(StatCan'sNN-NN-NNNN-NNdisplay format — the tool strips the dashes and drops the trailing 2-digit suffix)
Auth
None. Fully keyless — StatCan WDS has no rate-limit key or auth header.
Common pitfalls
statcan_cube_dataneeds a coordinate you already know. If you don't have one, get it fromstatcan_cube_vectorsfirst — don't hand-build a coordinate fromstatcan_cube_metadata's member list and guess.A wide table has thousands of combinations. Always filter by at least one dimension (most often
GEO) before enumerating a table you haven't seen — otherwise you'll be paging for a long time.terminated: trueon astatcan_cube_vectorsrow means that series has stopped publishing; the cube'scube_start_date/cube_end_datedescribe the whole table's range, not any one series' actual last observation.
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"statcan": {
"url": "https://gateway.pipeworx.io/statcan/mcp"
}
}
}What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/statcan/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}Both URLs reach the same gateway and the same 1683+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
No MCP client? Call it over HTTP
curl -X POST https://gateway.pipeworx.io/v1/tools/statcan_indicator \
-H 'Content-Type: application/json' \
-d '{"indicator":"cpi"}'No account needed for the first calls. Inspect any tool: GET https://gateway.pipeworx.io/v1/tools/statcan_indicator. Find one: POST https://gateway.pipeworx.io/v1/tools/search_packs with {"query":"..."}.
Standalone (no gateway account)
This package also runs as a local stdio MCP server — no Pipeworx account, no gateway round-trip:
{
"mcpServers": {
"statcan": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-statcan"]
}
}
}Or run it directly to confirm it starts:
npx -y @pipeworx/mcp-statcanIt speaks MCP over stdin/stdout and answers initialize/tools/list/tools/call
for only this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Statcan data" })The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Statistics Canada (StatCan) WDS MCP — Canadian official statistics (no auth)
MCP server for Statistics Sweden (SCB) - 1200+ tables with population, economy, environment data
Statistics Netherlands (CBS / StatLine) OData MCP.
Statistics Norway (SSB) PxWebApi MCP.
Related MCP Servers
- AlicenseAqualityBmaintenanceEnables MCP-compatible clients to access Canadian statistical data from Statistics Canada via WDS and SDMX APIs, including search, download, and analysis capabilities.25477 PyPI6MIT
- AlicenseAqualityDmaintenanceMCP server for accessing statistical data via the PxWeb API v2.64 npm1MIT
- AlicenseAqualityCmaintenanceMCP server providing access to Canadian legal information metadata (case law and legislation) from CanLII.74 npm2MIT
- AlicenseNot gradedqualityBmaintenanceBanco Central do Brasil MCP server that enables querying Brazilian central bank economic indicators via SGS codes.148 npmMIT