@pipeworx/stats-nz
MCP serverSearchNew Zealand official statistics (Aotearoa Data Explorer), search Stats NZ's 911 published…
Available today. Use it from your connected AI after setup.
No other account needed.
Add ahel to your AI once: Claude, ChatGPT, Cursor, Claude Code or Codex. Then ask it to use this.
Then ask your AI: use @pipeworx/stats-nz
Install @pipeworx/stats-nz
The server’s own address, for the clients that take one directly. Or connect ahel onceand every client you use reads it from one address, with the account kept on ahel rather than in each client’s config.
Claude Code
claude mcp add --transport http --scope user pipeworx-stats-nz 'https://gateway.pipeworx.io/stats-nz/mcp'Run it once in your project, then open /mcp to approve any sign-in the server asks for.
Claude Desktop
https://gateway.pipeworx.io/stats-nz/mcpAdd a custom connector in Settings, paste this address, and approve the sign-in.
Cursor
cursor://anysphere.cursor-deeplink/mcp/install?name=pipeworx-stats-nz&config=eyJ1cmwiOiJodHRwczovL2dhdGV3YXkucGlwZXdvcnguaW8vc3RhdHMtbnovbWNwIn0=Open the link and Cursor adds the server at that address.
ChatGPT
https://gateway.pipeworx.io/stats-nz/mcpIn Settings, enable Developer mode, create an MCP app, and paste this address. Your plan and workspace must allow custom apps.
Codex
codex mcp add pipeworx-stats-nz --url 'https://gateway.pipeworx.io/stats-nz/mcp'Run it once, then sign in with codex mcp login pipeworx-stats-nz if the server asks for an account.
From the project's README
As published by pipeworx-io/mcp-stats-nz in README.md.
New Zealand official statistics (Aotearoa Data Explorer) — search Stats NZ's 911 published datasets by keyword and pull their observations, covering the 2013/2018/2023 censuses, LEED earnings, business demography, population estimates and projections, household expenditure, corrections and justice.
Part of Pipeworx — an MCP gateway connecting AI agents to 1679+ live data sources.
Tools
statsnz_datasets({ query, limit, offset })— keyless. Keyword-search all 911 datasets; returns dataset id, full title, description, agency, version.statsnz_observations({ dataset, key, agency, version, startPeriod, endPeriod, lastNObservations, _apiKey })— period/value pairs with their dimension labels.statsnz_resources({ dataset, agency, version, includeCodes, maxCodesPerList, _apiKey })— dimensions in key order, time dimension, measure, and the code lists that turn a key like1.2.Qinto something readable.
Auth
Platform key PLATFORM_STATSNZ_KEY (in the encrypted keystore since
2026-09-18) with BYO override via ?_apiKey=; sent upstream as an
Ocp-Apim-Subscription-Key header. Callers need no key of their own. Free
subscription at https://portal.apis.stats.govt.nz/ — sign up, then subscribe
to the Aotearoa Data Explorer API product.
statsnz_datasets additionally works with no key at all.
Data sources
- https://api.data.stats.govt.nz/rest/dataflow/all/all/latest — dataset catalogue (keyless).
- https://api.data.stats.govt.nz/rest/data/{agency},{dataset},{version}/{key} — observations (keyed).
- https://api.data.stats.govt.nz/rest/datastructure/{agency}/{dataset}/{version}?references=all — structure + code lists (keyed).
Traps
- The catalogue is SDMX-ML now, whatever you ask for.
/rest/dataflow/all/all/latestserved SDMX-JSON until 2026-09-18 and now servesapplication/vnd.sdmx.structure+xml; version=2.1on every Accept header tried —structure+json;version=1.0, bareapplication/json,structure+json;version=2.0— keyed and keyless alike.res.json()on it throwsUnexpected token '<', "<?xml vers", which classifies asupstream_downand reads like an outage rather than a format change. The pack parses the XML. This is endpoint-specific:/rest/datastructure/…still answers structure+JSON, so don't convert that one too. - The flowRef commas must stay literal — encoding them is a silent zero.
The data path is
/rest/data/{agency},{dataset},{version}/{key}. Their Azure APIM does not percent-decode path segments, and an unmatched route falls through to a handler that answers 401 "missing subscription key" without a key and an empty-but-valid 200 with one. Measured 2026-09-18:/rest/data/STATSNZ,AGR_AGR_001,1.0/all?lastNObservations=1→ 200 with 80 observations; the same URL with%2C→ 401.encodeURIComponenton that segment is what madestatsnz_observationsreturncount: 0against a perfectly healthy dataset./rest/dataflow/%61ll/all/latest→ 401 too, so it is their routing, not this one path. - A zero from
statsnz_observationsis always explained, and a bad id is an error. Because an unknown dataset, a malformed path and a genuinely empty query are indistinguishable by status on this gateway, the tool validates the dataset id against the keyless catalogue before calling the data endpoint (cached 30 min per isolate). An unknown id raises a 404-shaped error naming near matches; an id that exists but returns nothing comes back withempty_reasonsaying which case it is — no structure at all (routed but uninterpretable), a dimensionkeythat filtered everything out, a period window with nothing in it, or a genuine upstream gap. - 401 does not mean "bad credential" here. Because an unmatched route also answers 401, a malformed path and a missing key are indistinguishable by status. The pack's 401 message says both possibilities out loud.
- Observations come back FLAT, not series-keyed.
dataSets[0].observationsis a map of"0:3" → [value, …]anddataSets[0].seriesis absent. Reading onlyseries(as this pack first did) yields zero observations from a good 200. Both layouts are mapped, plus dataset-level dimensions. lastNObservationsdrops the collapsed dimension from the observation key, and it is NOT always the time axis. WithlastNObservations=1on AGR_AGR_001 the key is 2 parts for 3 declared dimensions — the year is simply not in the response, so rows cannot say which year they are. On INC_INC_001 the collapsed dimension isMEASURE_INC_INC_001, a measure axis, across 35,610 rows. The pack reportscollapsed_dimensionsplus a note rather than returning rows that look fully labelled.startPeriod/endPeriodonly bite on a declared time dimension, and Stats NZ mostly declares none.statsnz_resourcesreportstime_dimension: []for AGR_AGR_001, and therolefield in the data message just echoes each dimension's own id, so there is no usable time marker: a dimension namedYEAR_*is not a time dimension to this server. The pack therefore tests for the SDMX standardTIME_PERIODid and, for anything else, tells the caller to pin the dimension through thekeyargument — naming its segment position and handing back a worked key such as..<YEAR_AGR_AGR_001>. The note used to recommendstartPeriod/endPeriodunconditionally, which is advice that cannot work on a measure axis (fleet #2244).Accept: application/vnd.sdmx.data+json;version=1.0.0is a 406. Their server lists genericdata+xml 2.1 and data+json 2.0 as acceptable. Plainapplication/jsonreturns SDMX-JSON 1.0 and is what this pack asks for.- Wrong host looks like an outage. The older documented host
api.stats.govt.nzanswers HTTP 502 from its Azure Application Gateway on every path including the root. A 502 reads as "their service is down" when in fact the service moved. The live host isapi.data.stats.govt.nz. Do not "fix" this pack back to the old hostname. - A bare SDMX resource path 404s.
/rest/dataflowis404 Resource not found; only the fully-qualified/rest/dataflow/{agency}/{resource}/{version}form answers. - Only 341 of the 911 dataflows carry a
description; the rest are title-only, so keyword filtering leans on long formal titles ("Earnings for people in paid employment", never "wages"). - CPI, GDP and merchandise trade are NOT in this catalogue. Measured 2026-09-17: 0 of 911 dataflows mention "price", "consumer" or "trade"; 705 are census tables. Describing the pack as covering CPI would misroute every inflation question to a source that cannot answer it.
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"stats-nz": {
"url": "https://gateway.pipeworx.io/stats-nz/mcp"
}
}
}
What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/stats-nz/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 1679+ 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/statsnz_datasets \
-H 'Content-Type: application/json' \
-d '{"query":"household income","limit":5}'
No account needed for the first calls. Inspect any tool: GET https://gateway.pipeworx.io/v1/tools/statsnz_datasets. 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": {
"stats-nz": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-stats-nz"]
}
}
}
Or run it directly to confirm it starts:
npx -y @pipeworx/mcp-stats-nz
It 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 Stats Nz data" })
The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
Advanced
- Delivery
- stats-nz MCP server → your ahel connector (mcp.ahel.ai) → your AI.
- Catalog kind
- mcp-server
- Key
io-github-pipeworx-io-stats-nz- Source
- github.com/pipeworx-io/mcp-stats-nz
- Hosted endpoint
https://gateway.pipeworx.io/stats-nz/mcp