This server wraps the Open-Meteo Air Quality API, giving you free access to air pollution data without authentication. It's part of the Pipeworx gateway ecosystem, which aggregates 673+ data sources behind a unified MCP interface. You can either connect directly to the air quality endpoint or use the full Pipeworx gateway and query it with natural language through ask_pipeworx. The source doesn't list specific tools, but Open-Meteo typically provides PM2.5, PM10, ozone, and other pollutant measurements by coordinates. Reach for this when you need to check air quality conditions in your app or agent workflow without managing API keys.
Air Quality MCP — wraps air-quality-api.open-meteo.com (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"airquality": {
"url": "https://gateway.pipeworx.io/airquality/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 Airquality data" })
The gateway picks the right tool and fills the arguments automatically.
MIT