Find air-quality stations and read pollutant observations from government monitors via OpenAQ v3.
If you already use Openaq, the openaq mcp server is the piece that lets your assistant work with it directly. Find air-quality stations and read pollutant observations from government monitors via OpenAQ v3.
Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
openaq_find_locations — Find monitoring stations near a point, in a bounding box, or by country. The required first step — readings and measurements key on the location idopenaq_get_readings — Latest measured value for every sensor at a station, each joined with its pollutant and unit. The current-conditions toolopenaq_get_measurements — Historical series for one pollutant at one station over a date range, with raw/hourly/daily aggregation. Large ranges spill to a DataCanvasopenaq_list_parameters — Catalog of measurable pollutants and their canonical units. The unit-disambiguation referenceopenaq_list_countries — Catalog of country-level coverage — data span and parameters measured, filterable by parametersId to answer "which countries measure thisopenaq_dataframe_describe — List the tables and columns staged on a DataCanvas so you can write valid SQLopenaq_dataframe_query — Run a read-only SELECT over staged measurement seriesPrerequisites — The Prerequisites tool exposed by this serverInstallation — The Installation tool exposed by this serverConfiguration is passed through the environment: MCP_TRANSPORT_TYPE, OPENAQ_API_KEY, CANVAS_PROVIDER_TYPE, OPENAQ_API_BASE_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
This sits in the database access group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Openaq's toolset — openaq_find_locations, openaq_get_readings, openaq_get_measurements and 6 more — is a fair guide to whether it matches your workflow. It is maintained by cyanheads; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Openaq's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| openaq_find_locations | Find monitoring stations near a point, in a bounding box, or by country. The required first step — readings and measurements key on the location id this returns. |
| openaq_get_readings | Latest measured value for every sensor at a station, each joined with its pollutant and unit. The current-conditions tool. |
| openaq_get_measurements | Historical series for one pollutant at one station over a date range, with raw/hourly/daily aggregation. Large ranges spill to a DataCanvas. |
| openaq_list_parameters | Catalog of measurable pollutants and their canonical units. The unit-disambiguation reference. |
| openaq_list_countries | Catalog of country-level coverage — data span and parameters measured, filterable by parametersId to answer "which countries measure this pollutant?". An availability check before a regional sweep. |
| openaq_dataframe_describe | List the tables and columns staged on a DataCanvas so you can write valid SQL. |
| openaq_dataframe_query | Run a read-only SELECT over staged measurement series. |
| Prerequisites | The Prerequisites tool exposed by this server. |
| Installation | The Installation tool exposed by this server. |
{
"mcpServers": {
"openaq-mcp-server": {
"type": "streamable-http",
"url": "https://openaq.caseyjhand.com/mcp"
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| MCP_TRANSPORT_TYPE | Configuration value read at startup. | Optional |
| OPENAQ_API_KEY | Credential the server authenticates with. | Yes |
| CANVAS_PROVIDER_TYPE | Configuration value read at startup. | Optional |
| OPENAQ_API_BASE_URL | Endpoint or connection string the server talks to. | Yes |
Read-only SQL access to Postgres — let your assistant inspect schemas and answer questions from real data.
Manage your whole Supabase project in conversation — database, auth, storage, Edge Functions and branches.
Query, modify and analyse local SQLite databases in conversation — the fastest way to chat with a data file.
Metabase ships its own MCP endpoint — search your BI content, build and run queries, and save questions and dashboards without leaving the chat.
Official MongoDB server covering data, schemas and Atlas management — from find queries to spinning up clusters.
Serverless Postgres with database branching — point your assistant at Neon and let it work on disposable copies.