Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
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

NameDescription
analyze_weather_promptGenerate 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_promptGenerate 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

NameDescription
get_conversation_logConversation log resource. Returns the complete conversation log with timestamps. This is read-only data accessible via URI.
get_weather_cacheWeather cache resource. Returns all cached weather data with timestamps and age information. Shows what forecasts and alerts are available without re-fetching.

TDQS

A4.1/5.0

Scored across 4 tools

Disambiguation5/5

Each tool targets a distinct function: cache management, alerts, current time, and forecast. No overlap or ambiguity.

Naming Consistency5/5

All names follow a consistent verb_noun snake_case pattern (clear_old_cache, get_alerts, get_current_time, get_forecast).

Tool Count4/5

With 4 tools, the set is slightly sparse but well-scoped for a combined weather/time server. Each tool serves a clear purpose.

Completeness3/5

Missing current weather conditions and location-based time input; only alerts and forecast for weather, time only via IP. Notable gaps exist.

Maintenance

ActivityInactive
ResponsivenessNo issues