Weather MCP

get_air_quality

Get air quality information for a specified city including PM2.5, PM10, ozone, nitrogen dioxide, carbon monoxide, and other pollutants. Provides health advisories based on current air quality levels.

Remote isdaniel/mcp_weather_server

Remote (network-hosted)

Other tools also called get_air_quality? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "city": {
      "type": "string",
      "description": "The name of the city to fetch air quality information for, PLEASE NOTE English name only, if the parameter city isn't English please translate to English before invoking this function."
    },
    "variables": {
      "type": "array",
      "items": {
        "enum": [
          "pm10",
          "pm2_5",
          "carbon_monoxide",
          "nitrogen_dioxide",
          "ozone",
          "sulphur_dioxide",
          "ammonia",
          "dust",
          "aerosol_optical_depth"
        ],
        "type": "string"
      },
      "description": "Air quality variables to retrieve. If not specified, defaults to pm10, pm2_5, ozone, nitrogen_dioxide, and carbon_monoxide."
    }
  }
}