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_alertsA | Get active weather alerts for a US state. Provides current weather alerts and warnings for the specified state. Checks cache first (30 min expiry), fetches fresh if needed. Args: state: Two-letter US state code (e.g. CA, NY) |
| get_forecastA | Get weather forecast for geographic coordinates. Provides a 5-day forecast for the specified location. Checks cache first (60 min expiry), fetches fresh if needed. Args: latitude: Latitude of the location (-90 to 90) longitude: Longitude of the location (-180 to 180) |
| get_current_timeA | Get the current time based on the user's IP address. This tool determines the user's timezone from their IP address using geolocation and returns the current local time in that timezone. Args: ip_address: Optional IP address to determine timezone. If not provided or empty string, attempts to detect automatically or defaults to UTC. Returns: Formatted string with current time, timezone, day, and ISO timestamp |
| clear_old_cacheA | Clear expired weather cache entries. Args: max_age_minutes: Maximum age in minutes before considering expired Returns: Status message with number of entries removed |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| analyze_weather_prompt | Generate a comprehensive weather analysis prompt. Args: location: City/state name (e.g., "Seattle, WA") coordinates: Optional "lat,lon" format (e.g., "47.6062,-122.3321") |
| timezone_helper_prompt | Generate a prompt for working with timezones. Args: action: Type of timezone help needed (check, convert, compare) |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| get_conversation_log | Conversation log resource. Returns the complete conversation log with timestamps. This is read-only data accessible via URI. |
| get_weather_cache | Weather cache resource. Returns all cached weather data with timestamps and age information. Shows what forecasts and alerts are available without re-fetching. |
TDQS
Scored across 4 tools
Each tool targets a distinct function: cache management, alerts, current time, and forecast. No overlap or ambiguity.
All names follow a consistent verb_noun snake_case pattern (clear_old_cache, get_alerts, get_current_time, get_forecast).
With 4 tools, the set is slightly sparse but well-scoped for a combined weather/time server. Each tool serves a clear purpose.
Missing current weather conditions and location-based time input; only alerts and forecast for weather, time only via IP. Notable gaps exist.