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
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_alertsB | Get weather alerts for a US state. Args: state: Two-letter US state code (e.g. CA, NY) |
| get_forecastC | Get weather forecast for a location. Args: latitude: Latitude of the location longitude: Longitude of the location |
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 2 tools
get_alerts and get_forecast are clearly distinct in both purpose and input parameters—one targets alerts by state, the other forecasts by coordinates. There is no overlap or ambiguity between the two.
Both tools follow the same get_ verb_noun pattern, making the naming scheme predictable and consistent. No mixed conventions or vague verbs.
With only two tools, the server sits at the thin end of the spectrum. Each tool is useful, but the count feels minimal for a weather service that could reasonably offer current conditions, hourly forecasts, or location search.
The core alert and forecast capabilities are covered, but obvious weather-domain operations are missing, such as current conditions, location search, or more granular forecast types. Agents may need to work around these gaps.