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 serves a distinct purpose: clear_old_cache for cache maintenance, get_alerts for weather alerts, get_current_time for time retrieval, and get_forecast for weather forecast. No overlap in functionality.
All tool names follow a consistent verb_noun pattern using snake_case: clear_old_cache, get_alerts, get_current_time, get_forecast. The naming convention is uniform.
With 4 tools, the server is well-scoped. The number is appropriate for a focused set of utilities, not too few or too many.
The tool set lacks cohesion: it combines weather (alerts, forecast) with time and cache maintenance, but omits common weather operations like current conditions or location search. The cache clearing tool is specific to weather cache, yet the time tool is unrelated, leaving gaps in both potential domains.