openaq-mcp-server
Server Details
Find air-quality stations and read pollutant observations from government monitors via OpenAQ v3.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- cyanheads/openaq-mcp-server
- GitHub Stars
- 2
- Server Listing
- @cyanheads/openaq-mcp-server
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.6/5 across 7 of 7 tools scored.
Each tool has a clear, distinct role: catalogs (countries, parameters), location search, current readings, historical series, and DataFrame query/describe. No two tools overlap in purpose; get_readings vs get_measurements cleanly separates current from historical data.
All tools share the 'openaq_' prefix and follow a verb_noun or noun_verb pattern, but the two DataFrame tools (openaq_dataframe_describe, openaq_dataframe_query) place the resource before the action, while the rest place the action first. This is a minor deviation, otherwise naming is predictable.
Seven tools is well within the ideal range for a focused air-quality data server. Each tool addresses a necessary step in the workflow: discovery, catalog lookup, current conditions, historical analysis, and handling large result sets.
The tool surface covers the full read-only lifecycle: discover availability (countries, parameters), locate stations, fetch current readings, fetch historical series, and manage large results via SQL. No obvious gaps exist for the stated domain.
Available Tools
7 toolsopenaq_dataframe_describeopenaq-mcp-server: dataframe describeARead-onlyInspect
List the tables and columns staged on a DataCanvas so you can write valid SQL for openaq_dataframe_query without guessing column names. Returns each measurement table (measurements_) with its row count and column names. Requires DataCanvas to be enabled.
| Name | Required | Description | Default |
|---|---|---|---|
| canvas_id | Yes | DataCanvas id returned by openaq_get_measurements when a series spilled. |
Output Schema
| Name | Required | Description |
|---|---|---|
| notice | No | Guidance when the canvas holds no tables yet. |
| tables | Yes | Tables currently staged on the canvas. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With readOnlyHint=true already signaling a safe read, the description adds valuable context: it reports the output contents (row count, column names) and the requirement that DataCanvas must be enabled. It doesn't discuss failure modes or rate limits, but the output schema covers return structure. This goes beyond the annotation without contradicting it.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the action, and each sentence earns its place. The first sentence states purpose and value; the second details the output and prerequisite. No redundant or filler content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple listing tool with one parameter and an output schema, the description provides enough context: purpose, usage timing, required precondition, and output summary. It doesn't cover error scenarios, but the output schema and annotations cover the essential details, making it sufficiently complete for an agent to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema fully describes the single parameter canvas_id with a contextual explanation ('DataCanvas id returned by openaq_get_measurements when a series spilled'). Since schema coverage is 100%, the baseline is 3, and the description doesn't add additional parameter-level meaning beyond that. This meets the baseline without exceeding it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'List the tables and columns staged on a DataCanvas'. It explicitly ties this to a sibling tool ('so you can write valid SQL for openaq_dataframe_query'), which distinguishes it and clarifies its role. The specific verb 'List' and the resource 'DataCanvas' make the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on when to use the tool: before running openaq_dataframe_query to avoid guessing column names. It also mentions a prerequisite ('Requires DataCanvas to be enabled'), which is helpful for the agent. However, it doesn't explicitly state when not to use it or compare with other sibling tools like openaq_get_readings, so it falls just short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
openaq_dataframe_queryopenaq-mcp-server: dataframe queryARead-onlyInspect
Run a read-only SQL SELECT against the measurement tables openaq_get_measurements staged on a DataCanvas. Reference tables by the name the measurements call returned (measurements_). For aggregation (monthly means, exceedance counts) and cross-sensor comparison over series too large to inline. Only SELECT is allowed — writes, DDL, and file/network table functions are rejected.
| Name | Required | Description | Default |
|---|---|---|---|
| sql | Yes | Read-only SELECT. Reference tables by the names openaq_get_measurements returned (e.g. measurements_1701). Use openaq_dataframe_describe first to see table and column names. | |
| canvas_id | Yes | DataCanvas id returned by openaq_get_measurements when a series spilled. |
Output Schema
| Name | Required | Description |
|---|---|---|
| rows | Yes | Result rows (capped at the canvas row limit). |
| rowCount | Yes | Full result count before the row cap. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
While annotations already declare readOnlyHint=true, the description adds meaningful behavioral detail: 'Only SELECT is allowed — writes, DDL, and file/network table functions are rejected.' This tells the agent exactly what operations will fail, which is beyond the annotation. It also explains the table naming convention from openaq_get_measurements, adding context not in the schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, each with a distinct purpose: purpose, use case, and restrictions. It is front-loaded with the core action, and every sentence adds necessary context without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has an output schema, so return values are covered externally. The description explains the tool's role in the workflow, its constraints, and its relationship to sibling tools, making it complete for a query tool of this complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so both parameters are already well-documented. The description adds extra value by explaining how to reference tables ('measurements_<sensorId>') and recommending the use of openaq_dataframe_describe to discover table/column names, which helps the agent construct correct SQL.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb+resource: 'Run a read-only SQL SELECT against the measurement tables openaq_get_measurements staged on a DataCanvas.' It also distinguishes the tool from siblings by stating it is for 'aggregation (monthly means, exceedance counts) and cross-sensor comparison over series too large to inline,' and points to openaq_dataframe_describe as a prerequisite.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use this tool vs. others: 'For aggregation... and cross-sensor comparison over series too large to inline.' It also gives a clear prerequisite: 'Use openaq_dataframe_describe first to see table and column names.' The read-only and SELECT-only restriction is also clearly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
openaq_find_locationsopenaq-mcp-server: find locationsARead-onlyIdempotentInspect
Find air-quality monitoring stations (measured by physical sensors, not modeled) near a point, within a bounding box, or by country. Returns each station's id, name, coordinates, distance from the query point (when searching by coordinates), country, provider, the parameters its sensors measure, and the timestamp of its most recent data (datetimeLast). Required first step: openaq_get_readings and openaq_get_measurements key on the location id this returns. Coverage is uneven and real — a station only reports the parameters it measures, and the absence of a nearby station means no monitoring there, not clean air. For dense modeled coverage anywhere on Earth, use open-meteo-mcp-server's air-quality tool instead.
| Name | Required | Description | Default |
|---|---|---|---|
| iso | No | Restrict to a country by ISO 3166-1 alpha-2 code (e.g. "US", "IN", "DE"). Combine with bbox/coordinates to scope, or use alone for a country-wide list. Discover coverage with openaq_list_countries. | |
| bbox | No | Bounding box as "minLon,minLat,maxLon,maxLat" (west,south,east,north). Alternative to coordinates+radius for area sweeps. Results have no distance field (no center point). | |
| page | No | Which page of results to return (1-based). Default 1. The only way past the 100-station cap: with limit 100, page 2 returns stations 101–200. Distance ordering applies within a page, not across pages, so paging is for iso/bbox sweeps — a near-me coordinates search should stay on page 1. | |
| limit | No | Max stations to return (1–100). Default 20. Results are ordered by distance when searching by coordinates. | |
| radius | No | Search radius in metres around coordinates (1–25000; the API hard-caps at 25000). Default 12000 (~12km). Only used with coordinates. | |
| coordinates | No | Center point as "latitude,longitude" (e.g. "47.6062,-122.3321"). Pair with radius for a near-me search. Resolve a place name to coordinates with openstreetmap-mcp-server or open-meteo geocode first. Provide either coordinates+radius OR bbox, not both. | |
| parametersId | No | Only return stations that measure this parameter id (e.g. 2 = PM2.5 µg/m³). Get ids from openaq_list_parameters — the same pollutant has several ids for different units. Narrows the station set; each returned station still lists all its sensors. |
Output Schema
| Name | Required | Description |
|---|---|---|
| cap | No | The limit that was applied. |
| shown | No | Number of stations returned. |
| notice | No | Guidance when OpenAQ reports a lower-bound total without the result set hitting the limit. |
| locations | Yes | Matching stations. Empty array means no monitoring coverage for the query — NOT clean air. Widen the radius, try openaq_list_countries, or use the modeled open-meteo air-quality tool. |
| truncated | No | True when the station list was capped at the limit. |
| totalCount | Yes | Total matching stations before the limit. A floor (not an exact count) when totalCountIsLowerBound is true. |
| totalCountIsLowerBound | No | True when OpenAQ reported a lower bound (">N"): totalCount is a floor and more stations match than the count shown. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint, openWorldHint, and idempotentHint. The description adds valuable context beyond these: 'Coverage is uneven and real — a station only reports the parameters it measures, and the absence of a nearby station means no monitoring there, not clean air.' It also discloses behavioral nuances such as the 100-station cap per page, distance ordering only within a page, and the API's hard 25000m radius limit, none of which contradict annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Every sentence earns its place. The description is front-loaded with the core purpose, followed by return fields, integration context, a coverage caveat, and an alternative tool. It is longer than typical descriptions, but given seven parameters and the need to convey paging and coverage nuance, the length is justified with zero redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema (so return values need not be explained), the description still lists key return fields, clarifies search modes, and provides crucial real-world caveats about uneven sensor coverage. It also explains how this tool fits into the broader workflow with openaq_get_readings/openaq_get_measurements and alternative tools, making it fully self-contained for an agent to decide when and how to invoke it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides 100% coverage, including detailed descriptions for every parameter and mutual exclusivity notes. The main description adds extra semantics by summarizing the three search modes (coordinates+radius, bbox, iso) and mentioning the returned 'distance from the query point (when searching by coordinates)', which is not in the schema. This adds modest value beyond the schema, but the schema already carries most of the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Find air-quality monitoring stations... near a point, within a bounding box, or by country.' It lists returned fields (id, name, coordinates, distance, country, provider, parameters, datetimeLast) and explicitly distinguishes from sibling tools by positioning it as the required first step for openaq_get_readings/openaq_get_measurements and by naming open-meteo as the alternative for modeled coverage.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit when-to-use and when-not-to-use guidance: 'For dense modeled coverage anywhere on Earth, use open-meteo-mcp-server's air-quality tool instead.' It also explains paging is intended for iso/bbox sweeps, not near-me searches, and references companion tools like openaq_list_countries and openaq_list_parameters for parameter discovery.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
openaq_get_measurementsopenaq-mcp-server: get measurementsARead-onlyIdempotentInspect
Historical measurement series for one pollutant at one station over a date range — for trend analysis and "was last week worse than the monthly average?". Pass a locationId and a parametersId and work in stations — you get the series for that pollutant at that station. Choose aggregation: raw (every reported value), hourly, or daily — daily and hourly add a per-bucket statistical summary (min, median, max, mean, sd). Large ranges produce thousands of rows and spill to a DataCanvas: the response returns a preview plus a canvasId and table name you query with openaq_dataframe_query. Values carry their unit; the server never converts between µg/m³, ppm, and ppb.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max rows per page from the API (1–1000). Default 1000. The tool pages internally up to the spill threshold. | |
| canvas_id | No | DataCanvas id from a prior call to reuse the same canvas (e.g. to compare two stations' series side by side). Omit to start fresh; the response returns a new canvas_id when the series spills. | |
| datetimeTo | No | End of the range, inclusive. Date "YYYY-MM-DD" covers that whole day (closes at 23:59:59Z) or full UTC "YYYY-MM-DDTHH:MM:SSZ". Must land after datetimeFrom — the two forms mix freely, so "2026-06-25" to "2026-06-25" is a valid one-day range. Omit for "up to now". | |
| locationId | Yes | Station id from openaq_find_locations. | |
| aggregation | No | Time bucketing. "raw" = every reported value (often hourly at source). "hourly"/"daily" = server-side rollups with a statistical summary per bucket. Use "daily" for multi-month trends to keep the series small; "raw" for fine-grained recent analysis. | raw |
| datetimeFrom | No | Start of the range, inclusive. Date "YYYY-MM-DD" (opens at 00:00:00Z that day) or full UTC "YYYY-MM-DDTHH:MM:SSZ". Omit to get the most recent values. | |
| parametersId | Yes | Parameter id to pull the series for (e.g. 2 = PM2.5 µg/m³). Get ids from openaq_list_parameters. Must be a parameter the station measures — find_locations lists each station's parameters. |
Output Schema
| Name | Required | Description |
|---|---|---|
| notice | No | What limited this response, when something did — the row cap, a failed page, or DataCanvas being unavailable — plus how to reach the rest. |
| series | Yes | The (possibly previewed) series, newest or oldest first per the API. When truncated, this is a preview — query canvasId for the rows staged there. |
| canvasId | No | DataCanvas id holding the pulled series. Query with openaq_dataframe_query. The pull stops at 5000 rows, so this is the whole series only when totalCount is at or below that — read the notice, which says so when the cap or a failed page cut the pull short. |
| location | Yes | Station the series came from |
| rowCount | Yes | Rows in this response (preview length when spilled) |
| sensorId | Yes | Resolved sensor id the series was pulled from |
| parameter | Yes | What was measured, resolved from the station's sensor |
| tableName | No | Canvas table name for the staged series (e.g. "measurements_1701"). Reference it in SQL. |
| truncated | No | True when the series exceeded the inline limit, so series is a preview and the pulled rows were staged on canvasId. Absent/false when everything fit inline. It says nothing about whether the pull itself was complete — compare rowCount and totalCount, and read the notice. |
| totalCount | Yes | Total rows in the full series. |
| aggregation | Yes | Bucketing applied |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, and idempotentHint, so the description is free to add behavioral detail: aggregation adds per-bucket statistics, large ranges spill to a DataCanvas with a preview and canvasId, and the server never converts units. This goes beyond annotations and provides valuable operational context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is around 150 words and well-structured: it front-loads the purpose, then explains aggregation, spill behavior, and unit handling. Every sentence carries specific information, though a slight trim could make it punchier without losing content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (7 params, output schema exists, annotations present), the description covers the key contextual aspects: use case, aggregation options, large-result handling, and unit policy. It is complete for an agent to select and invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, including detailed explanations for each parameter (e.g., date formats, aggregation enum, limit behavior). The tool description reinforces the need for locationId and parametersId but does not add substantial meaning beyond the schema. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Historical measurement series for one pollutant at one station over a date range.' It is specific about the resource (measurements), scope (one pollutant/station/date range), and distinct use cases like trend analysis. The spill-to-DataCanvas behavior also differentiates it from sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit use cases ('for trend analysis and "was last week worse than the monthly average?"') and explains when to use aggregation modes. It references a sibling tool (openaq_dataframe_query) for handling large spill results, but does not explicitly mention when not to use this tool or alternative retrieval tools like openaq_get_readings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
openaq_get_readingsopenaq-mcp-server: get readingsARead-onlyIdempotentInspect
Latest measured value for every sensor at a monitoring station — the current-conditions tool. Returns one record per parameter, each with the value, its unit, the UTC and local timestamp, and the sensor id, joined so every value carries its pollutant and unit (the raw latest feed is keyed only by sensor id). Pass a locationId from openaq_find_locations, or pass coordinates to auto-resolve to the nearest station that measures the requested parametersId. Data recency varies by station reporting cadence — read each value's timestamp to know whether "latest" is minutes or hours old. These are measured observations with coverage gaps, not a modeled grid.
| Name | Required | Description | Default |
|---|---|---|---|
| locationId | No | Station id from openaq_find_locations. Provide this OR coordinates. When set, returns the latest value for every sensor at this station. | |
| coordinates | No | Fallback "latitude,longitude" when you do not have a locationId — resolves to the nearest station (within 25km) that measures parametersId, then reads its latest values. Requires parametersId. | |
| parametersId | No | Required with coordinates: which parameter id the nearest station must measure (get ids from openaq_list_parameters). With locationId, optionally filters the returned values to this parameter id; omit to get all sensors. |
Output Schema
| Name | Required | Description |
|---|---|---|
| notice | No | Guidance when the station resolved but returned no recent values. |
| location | Yes | The station these readings came from |
| readings | Yes | Latest value per sensor. An old datetime means the station reports infrequently or is stale — not that the value is current. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, and idempotentHint, but the description adds substantial context: output shape ('one record per parameter'), the join from the raw feed keyed by sensor id, the resolution behavior for coordinates (nearest station within 25km), and the warning about data recency and coverage gaps. This goes far beyond the structured annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the main purpose and uses a well-structured, moderately sized paragraph. Every sentence contributes meaningful context—format, usage, and caveats—without repetition. There is no wasted wording.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given an output schema exists, the description doesn't need to enumerate return fields. It covers the essential non-obvious context: data recency varies, readings are measured with coverage gaps, not modeled, and location resolution logic. This is complete for a tool of this complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and the description essentially paraphrases what the schema already states. It reinforces the dependency that parametersId is required with coordinates and optional with locationId, and points to sibling tools for source ids, but adds no genuinely new parameter-level meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Latest measured value for every sensor at a monitoring station — the current-conditions tool.' It clearly distinguishes itself from sibling tools like openaq_get_measurements by positioning itself as the 'current-conditions' tool, not a time-series tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear usage context: use it for current conditions, pass a locationId from openaq_find_locations, or pass coordinates with parametersId to auto-resolve to a nearby station. It also mentions data recency caveats. However, it does not explicitly name when to use openaq_get_measurements as an alternative, so it is not a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
openaq_list_countriesopenaq-mcp-server: list countriesARead-onlyIdempotentInspect
Catalog of country-level coverage: id, ISO code, name, the date span of available station data (datetimeFirst/datetimeLast), and which parameters are measured anywhere in that country. The availability check before a regional sweep — answers "which countries have NO2 monitoring?" and tells you whether a country has recent data before you call openaq_find_locations. Coverage is uneven worldwide; this surfaces where measured data exists.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Case-insensitive filter over the bounded country catalog (~153) by code and name. A two-letter query is treated as an exact ISO 3166-1 alpha-2 code (e.g. "US" → United States); longer queries match as substrings (e.g. "united", "germany"). Omit to list all. | |
| parametersId | No | Only return countries that measure this parameter id somewhere (e.g. 2 = PM2.5 µg/m³) — the one-call answer to "which countries have NO2 monitoring?". Get ids from openaq_list_parameters; the same pollutant has several ids for different units. Composes with query. |
Output Schema
| Name | Required | Description |
|---|---|---|
| notice | No | Guidance when the query matched nothing. |
| countries | Yes | Matching countries with coverage metadata. |
| totalCount | Yes | Total countries matched after filtering. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the tool as read-only and idempotent, so the description doesn't need to restate safety. It adds valuable context about uneven global coverage and that it surfaces where measured data exists, which goes beyond the schema and annotations. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, zero waste. The first sentence lists the returned fields, the second explains the tool's role in a broader workflow. Information is front-loaded and every clause contributes.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, has an output schema, and strong annotations. The description covers purpose, usage timing, and data coverage nuances. No additional behavioral details are necessary for effective invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so baseline is 3. The description reinforces the purpose of parameter filtering (e.g., NO2 monitoring) but adds no new syntax or semantics beyond the schema, which already explains query and parametersId fully.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as a catalog of country-level coverage with specific fields (id, ISO code, name, datetimeFirst/datetimeLast, parameters). It uses a specific verb 'catalog' and distinguishes its role from downstream tools like openaq_find_locations by positioning it as a pre-check.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use it: 'availability check before a regional sweep' and 'before you call openaq_find_locations.' It provides a concrete use case ('which countries have NO2 monitoring?') but does not name alternative tools for when not to use it, though the context implies find_locations for specific location queries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
openaq_list_parametersopenaq-mcp-server: list parametersARead-onlyIdempotentInspect
Catalog of every measurable pollutant and its canonical unit: id, code, display name, unit, and a one-line description (pm25, pm10, o3, no2, so2, co, bc, and ~38 more). This is the unit-disambiguation reference — the same pollutant exists under several ids with different units (CO is id 4 in µg/m³, id 8 in ppm, id 102 in ppb), so use this to pick the exact parametersId for openaq_find_locations / openaq_get_readings / openaq_get_measurements and to interpret a reading's unit. A small bounded catalog fetched live from OpenAQ.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Case-insensitive filter over the bounded parameter catalog (~44) by code, display name, and description (e.g. "pm" for particulates, "ozone", "co"). Omit to list everything. | |
| pollutantsOnly | No | When true, exclude meteorological/auxiliary parameters (temperature, humidity, wind, pressure, particle-count channels) and return only air pollutants. Default false (full catalog). |
Output Schema
| Name | Required | Description |
|---|---|---|
| notice | No | Guidance when the query matched nothing. |
| parameters | Yes | Matching parameters. Multiple rows can share a name with different ids/units — pick the id whose unit you want. |
| totalCount | Yes | Total parameters matched after filtering. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is covered. The description adds valuable context beyond annotations: it is a live-fetched bounded catalog (~44 items), notes that the same pollutant exists under multiple ids with different units, and highlights the disambiguation purpose—useful behavioral details not present in the schema or annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise yet information-dense, with only two sentences that each earn their place. It front-loads the core purpose and includes concrete examples (CO in different units) that illustrate the unit-disambiguation function without unnecessary fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only catalog tool with full schema coverage, idempotent read-only annotations, and an output schema, the description is complete. It explains the catalog's bounded nature, use case, and relation to sibling tools, making it self-sufficient for an agent to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds value by explaining the catalog's size (~44) and how the query filters over code/display name/description, complementing the schema's parameter descriptions. It also clarifies the pollutantsOnly parameter's effect (excluding meteorological/auxiliary parameters) which is slightly more contextual than the schema's wording.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: listing a catalog of pollutants with canonical units, including specific examples and the schema's id/code/name/unit fields. It distinguishes itself from sibling tools by explicitly being a reference catalog for unit disambiguation, which is unique among the listed tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use this tool: to pick the exact parametersId for openaq_find_locations / openaq_get_readings / openaq_get_measurements and to interpret a reading's unit. It also provides a clear alternative context by naming these siblings, giving the agent direct guidance on how this tool fits into the workflow.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityCmaintenanceAccess air quality data from Open-Meteo API, free and without authentication.9MIT
- Alicense-qualityBmaintenanceEnables querying Polish air-quality data from GIOŚ stations by providing tools to list stations, get sensor readings, and retrieve the composite air-quality index.MIT
- Alicense-qualityCmaintenanceProvides real-time Air Quality Index data from the World Air Quality Index service, enabling queries by location, station, or keyword search.6MIT
- Alicense-qualityCmaintenanceEnables querying of official Netherlands air quality data from the RIVM Luchtmeetnet API via MCP tools.2MIT
Your Connectors
Sign in to create a connector for this server.