China Air Quality MCP — nationwide hourly AQI from CNEMC (中国环境监测总站).
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
git clone https://github.com/pipeworx-io/mcp-china-air-quality{
"mcpServers": {
"mcp-china-air-quality": {
"command": "node",
"args": ["/path/to/mcp-china-air-quality/dist/index.js"]
}
}
}MCP Servers overview
# @pipeworx/china-air-quality
Real-time nationwide air quality (空气质量) for China — AQI, pollutant levels and
concentrations (PM2.5, PM10, O3, NO2, SO2, CO), quality rating and monitoring-station
detail. Keyless.
Part of [Pipeworx](https://pipeworx.io) — an MCP gateway connecting AI agents to 1530+ live data sources.
Of the 20 China-government sources probed 2026-09-07 (`docs/china-vertical-plan.md`
§2), this was the only one that answered clean JSON with no session cookie, Referer
trick or undocumented catalog id. No external demand asked for it in the prior 30
days; it is built because it is distinctive (nobody else serves CNEMC over MCP), not
because a question was waiting on it.
## Tools
- `china_air_quality(city)` — a city's current AQI, quality rating, primary
pollutant, per-pollutant index level, and averaged station concentrations. Accepts
an English city name ("Beijing"), a province ("Guangdong" resolves to its capital,
Guangzhou), or the Chinese name directly ("北京市").
- `china_air_quality_ranking(direction?, n?, pollutant?)` — nationwide ranking of all
338 CNEMC-monitored cities by AQI or by one pollutant's index level. `direction:
"bottom"` (default) surfaces the most polluted; `"top"` the cleanest.
- `china_air_quality_stations(city)` — every individual monitoring station within one
city, with its own AQI, concentrations and coordinates — the neighborhood-level view
the city-wide summary averages over.
## Source
China National Environmental Monitoring Centre (中国环境监测总站), the government body
that operates China's official air-quality monitoring network:
- `https://air.cnemc.cn:18007/CityData/GetAllCityRealTimeAQIModels` — all 338 cities,
refreshed hourly. Carries AQI and a 1-6 index **level** per pollutant, but no raw
concentration.
- `https://air.cnemc.cn:18007/CityData/GetAQIDataPublishLive?cityName=<市名>` —
station-level rows for one city, with actual pollutant concentrations (µg/m³, CO in
mg/m³). `GetAQIDataPublishLives` (plural) is a dead path — it 404s.
`china_air_quality` merges both calls: city-level AQI/level/quality from the cached
all-cities feed, and averaged concentrations computed from that city's stations,
because the all-cities endpoint alone never carries a concentration value.
The all-cities payload (144 KB, hourly) is cached in-isolate for 10 minutes.
## City names — Chinese only on the upstream
CNEMC identifies every city by its Chinese administrative name; "Beijing" resolves
nowhere on the wire. `src/index.ts` bundles a generated table:
- **`CITY_EN_TO_ZH`** — Hanyu Pinyin romanization of all 338 published city names
(administrative suffix 市/州/盟/地区/自治州 stripped), with a hand override for the
handful whose common English spelling diverges from straight pinyin: Xi'an, Harbin,
Urumqi, Lhasa, Hohhot, Ordos, Qiqihar, Hulunbuir.
- **`PROVINCE_TO_ZH`** — the 31 provinces/autonomous regions/municipalities (English
and Chinese name) mapped to their capital city, so "air quality in Guangdong"
resolves to Guangzhou.
- Chinese input is always accepted as-is against the 338 published names, with or
without the trailing 市/州.
An unresolvable city name returns `found: false` with a hint rather than an upstream
error — CNEMC's own unknown-city response is a silent empty array, which would
otherwise read as "no pollution data" instead of "city not recognized".
## Known limits
- **Concentrations are a station average, not a single official number.** CNEMC
publishes concentrations only at station grain; the city-level summary is this
pack's average across that city's reporting stations for the current hour, stated
in `pollutant_note` on every response.
- **A concentration below the sensor floor is excluded, not guessed.** CNEMC reports
some readings as `<3` (below detection limit); those are dropped from the average
rather than parsed as a wrong number.
- **MEE monthly city reports are HTML** and out of scope for this pack — see
`docs/china-vertical-plan.md` §2 (filed separately as a research task).
## Auth
None.
## Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
```json
{
"mcpServers": {
"china-air-quality": {
"url": "https://gateway.pipeworx.io/china-air-quality/mcp"
}
}
}
```
### What this endpoint actually serves
`tools/list` at `https://gateway.pipeworx.io/china-air-quality/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:
```json
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
```
Both URLs reach the same gateway and the same 1530+ data sources. The
only difference is which pack's tools are listed **directly**; `ask_pipeworx`
reaches all of them from either one.
## 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 China Air Quality data" })
```
The gateway picks the right tool and fills the arguments automatically.
## More
- [Docs and guides](https://pipeworx.io/docs)
- [pipeworx.io](https://pipeworx.io)
## License
MIT
What people ask about mcp-china-air-quality
What is pipeworx-io/mcp-china-air-quality?
+
pipeworx-io/mcp-china-air-quality is mcp servers for the Claude AI ecosystem. China Air Quality MCP — nationwide hourly AQI from CNEMC (中国环境监测总站). It has 0 GitHub stars and its last recorded update is dated 2026-09-07.
How do I install mcp-china-air-quality?
+
You can install mcp-china-air-quality by cloning the repository (https://github.com/pipeworx-io/mcp-china-air-quality) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is pipeworx-io/mcp-china-air-quality safe to use?
+
Our security agent has analyzed pipeworx-io/mcp-china-air-quality and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains pipeworx-io/mcp-china-air-quality?
+
pipeworx-io/mcp-china-air-quality is maintained by pipeworx-io. The last recorded GitHub activity is dated 2026-09-07, with 0 open issues.
Are there alternatives to mcp-china-air-quality?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy mcp-china-air-quality to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/pipeworx-io-mcp-china-air-quality)<a href="https://claudewave.com/repo/pipeworx-io-mcp-china-air-quality"><img src="https://claudewave.com/api/badge/pipeworx-io-mcp-china-air-quality" alt="Featured on ClaudeWave: pipeworx-io/mcp-china-air-quality" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!