Clara — Personal Clean Air Planner
Server Details
UK personal air quality advice and daily exposure assessment. Pairs with Hermes for live data.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
2 toolscontextual_adviceAInspect
Personalised air quality advice for a UK location and a specific user context.
Use this tool whenever the user asks an air-quality question that depends on who they are or what they're about to do: e.g. asthma, pregnancy, school-age child, gas cooker at home, tube commute, outdoor exercise. It composes location-specific pollution with the user's personal context to produce evidence-based advice — far more targeted than a generic "high pollution day" handout.
Composable with Hermes: pass pm25/no2 from Hermes get_current_aq for advice based on live readings rather than annual average estimates.
Returns structured advice with a plain-English summary, health context, and local intervention information. Present the 'summary' to users first.
Args: postcode: UK postcode (e.g. "SE17 1RL"). Provides coords + LAEI pollution. latitude: Latitude for coordinate-based lookup. longitude: Longitude for coordinate-based lookup. pm25: PM2.5 concentration in ug/m3. Overrides location-based estimate. no2: NO2 concentration in ug/m3. Overrides location-based estimate. setting: Context — residential, school, workplace, outdoor_exercise, commute. has_gas_cooker: Whether the person has a gas cooker (affects indoor advice). commute_mode: If setting is commute — walk, cycle, bus, car, train, tube. has_indoor_sources: Indoor pollution sources (smoking, woodstove). audience: Target audience — general, children, elderly, respiratory, pregnant.
| Name | Required | Description | Default |
|---|---|---|---|
| no2 | No | ||
| pm25 | No | ||
| setting | No | residential | |
| audience | No | general | |
| latitude | No | ||
| postcode | No | ||
| longitude | No | ||
| commute_mode | No | ||
| has_gas_cooker | No | ||
| has_indoor_sources | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses output format ('returns structured advice with a plain-English summary, health context, and local intervention information') and provides a presentation directive ('Present the summary to users first'). It also mentions composability with Hermes. It does not detail edge cases or failure modes, but covers the main behavioral aspects.
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 well-structured and front-loaded. The opening sentence states the core purpose, followed by usage guidance, composition notes, and return-value info. The parameter list is thorough but each line is concise and informative. No wasted words.
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 10-parameter complexity and no output schema, the description covers the essential context: purpose, usage triggers, parameter meanings, and return format. It lacks explicit guidance on parameter combinations (e.g., postcode vs. lat/long, required at least one) but otherwise provides a complete picture.
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 schema has 0% description coverage, but the description compensates richly by explaining every parameter: postcode, latitude/longitude, pm25/no2 overrides, setting, has_gas_cooker, commute_mode, has_indoor_sources, and audience. It also adds crucial context like 'provides coords + LAEI pollution' and 'affects indoor advice.'
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: 'Personalised air quality advice for a UK location and a specific user context.' It uses a specific verb and resource, and elaborates on composing location-specific pollution with user context. While it does not explicitly name sibling exposure_assessment, it differentiates by focusing on personalized, evidence-based advice rather than generic assessment.
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 when-to-use guidance: 'Use this tool whenever the user asks an air-quality question that depends on *who they are* or *what they're about to do*' with clear examples. It does not offer explicit when-not-to-use or alternatives, but the context is so specific that exclusion is implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
exposure_assessmentAInspect
Estimate personal daily air pollution exposure across home, work, and commute.
Uses time-weighted modelling across environments: home (with indoor source adjustments), work, and commute (with route-based pollution and transport mode factors). Based on annual average pollution estimates, not live readings.
Args: home_postcode: Home location UK postcode (e.g. "SE17 1RL"). Required. work_postcode: Work/school location postcode. Omit if not commuting. transport_mode: Commute mode — walk, cycle, bus, car, train, tube. work_frequency: How often you commute — most_days, some_days, less_often, never. commute_hour: Hour of commute (0-23) for time-of-day pollution adjustment. cooker_type: Home cooker type — gas, electric, induction, unknown. smoking_at_home: Whether anyone smokes indoors (major PM2.5 source). tube_line: London Underground line for tube commuters (e.g. "victoria").
| Name | Required | Description | Default |
|---|---|---|---|
| tube_line | No | ||
| cooker_type | No | unknown | |
| commute_hour | No | ||
| home_postcode | Yes | ||
| work_postcode | No | ||
| transport_mode | No | walk | |
| work_frequency | No | most_days | |
| smoking_at_home | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It covers key aspects: time-weighted modelling across environments, indoor source adjustments, route-based factors, and the annual-average limitation. It does not disclose return format or units, but it does state a major limitation ('not live readings') and explains the model's inputs. This is strong given the constraints.
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 structured as a summary paragraph followed by an Args list. Each sentence serves a purpose, and the front-loaded purpose statement is efficient. It is slightly longer than strictly necessary, but the param explanations are valuable and well-organized. No fluff or repetition.
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 8 parameters and no output schema, so the description should cover the return value to be fully complete. It clearly explains the estimation approach but does not state what the function returns (e.g., a numeric exposure value, units, or a breakdown). This is a notable gap for a complex computation tool, making it minimally viable but not complete.
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 description adds substantial meaning for every parameter, far beyond the bare schema titles. It explains each arg with domain context (e.g., 'smoking_at_home: Whether anyone smokes indoors (major PM2.5 source)'), provides example values (postcode format, tube line), and clarifies optionality. Since schema coverage is 0%, this description fully compensates.
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 clear, specific action: 'Estimate personal daily air pollution exposure across home, work, and commute.' This verb+resource pairing immediately defines the tool's purpose and differentiates it from the sibling 'contextual_advice', which likely provides recommendations rather than quantitative estimates.
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 usage context: it explains the methodology (time-weighted modelling) and explicitly notes it uses annual averages, not live readings. It gives per-parameter guidance (e.g., 'Omit if not commuting' for work_postcode), but does not explicitly state when to choose this tool over the sibling or name exclusions. This is clear context, though not full when/when-not guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2 tool updates
- First observed
contextual_advice - First observed
exposure_assessment
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Access UK air quality data, monitoring sites, and hourly pollutant measurements across regions
UK air quality MCP: live readings, historical trends, LAQM stats, WHO checks, knowledge base.
Access UK flood warnings, river levels, water quality, Met Office forecasts, and carbon data
Free, keyless real-time air quality (US AQI plus PM2.5, PM10, ozone, NO2, SO2, CO) for any city.
Related MCP Servers
- AlicenseAqualityAmaintenanceLocal-first air-quality MCP for AI agents: AirGradient, AirThings, PurpleAir, IQAir and Awair.19263MIT
- AlicenseNot gradedqualityBmaintenanceEnables natural language interaction with air quality data from Airly, including real-time measurements, nearby stations, and forecasts.19MIT
- FlicenseNot gradedqualityNot gradedmaintenanceProvides real-time air quality monitoring and historical data analysis for InBiot MICA sensors with integrated WELL Building Standard compliance checks. It allows users to compare indoor conditions with outdoor weather and receive actionable health recommendations based on global air quality standards.-
- AlicenseNot gradedqualityBmaintenanceEnables users to produce explainable UK garden watering recommendations as deterministic millimetres, litres and runtime from self-reported garden details or an optional postcode, without controlling irrigation hardware.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
The two tools have distinct purposes: one gives contextual advice, the other estimates daily exposure. Though they share some inputs, their outputs and use cases are clearly different. No real ambiguity, but they are related enough that an agent might need to think twice.
Both tool names are descriptive noun phrases (adjective_noun) and follow a consistent pattern. They don't use a verb_noun structure, but the style is uniform and readable. Minor deviation from typical action-oriented naming, but internally consistent.
With only 2 tools, the server feels thin for a 'Personal Clean Air Planner.' The scope is narrow but may be intentional. However, most planners would include at least a basic air quality lookup tool, making the count borderline low.
The tools cover advice and exposure estimation but lack a direct way to fetch current or forecast air quality data (contextual_advice references another server's get_current_aq). No tool for simple 'what's the air quality now?' or general health tips. Gaps will cause agent failures for common requests.