Weather MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_current_weatherA | Get current weather information for a specified city. It extracts the current hour's temperature and weather code, maps the weather code to a human-readable description, and returns a formatted summary. |
| get_weather_byDateTimeRangeB | Get weather information for a specified city between start and end dates. |
| get_weather_detailsB | Get detailed weather information for a specified city as structured JSON data. This tool provides raw weather data for programmatic analysis and processing. |
| get_current_datetimeA | Get current time in specified timezone. |
| get_timezone_infoA | Get information about a specific timezone including current time and UTC offset. |
| convert_timeB | Convert time from one timezone to another. |
| get_air_qualityA | 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. |
| get_air_quality_detailsB | Get detailed air quality information for a specified city as structured JSON data. This tool provides raw air quality data for programmatic analysis and processing. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Some tools have overlapping purposes, such as get_current_weather vs get_weather_details and get_air_quality vs get_air_quality_details, which differ only in output format. Time-related tools (convert_time, get_current_datetime, get_timezone_info) also overlap in functionality, potentially confusing an agent.
Most tools follow a `get_<resource>` pattern in snake_case, but `get_weather_byDateTimeRange` mixes casing (DateTime) and deviates from the pure snake_case convention. This inconsistency partially undermines naming predictability.
With 8 tools covering weather, air quality, and time operations, the count is appropriate for the server's scope. It is neither too sparse nor overly large, though some tools could be consolidated.
The tool set covers current weather, weather over a date range, air quality (both summary and details), and time-related features. Missing forecast-specific tools are partially addressed by the date range tool, making it fairly complete for a weather/time server.