Skip to main content
Glama

Weather & Geo Intel MCP

weather_forecast

Get a multi-day weather forecast for a US location by latitude/longitude (National Weather Service). Returns named periods (Today, Tonight, ...) with temperature, wind, and a short + detailed forecast. Use geocode first if you only have an address.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
latYesLatitude in decimal degrees, e.g. 36.1867. US coverage only (National Weather Service).
lonYesLongitude in decimal degrees, negative in the western hemisphere, e.g. -94.1288.
hourlyNoIf true, return the hourly forecast instead of daily periods.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the behavioral burden. It discloses that this is a read operation ('Get'), US-only coverage, NWS source, and the response contents (named periods, temperature, wind, short/detailed text). It does not mention limitations such as exact forecast horizon or units, but the essential behavior is transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short sentences, each earning its place: core action, expected return shape, and routing hint. No redundant filler or repetition of schema details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a low-complexity, read-only forecast tool with three parameters and no nested objects, the description plus fully covered schema gives an agent everything needed to select and call it correctly. The return content is described even though no output schema exists.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so lat/lon already have decimal-degree and coverage context, and hourly has a default and behavior note. The description adds no parameter-level detail beyond the schema, so the baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb ('Get'), resource ('multi-day weather forecast'), and required inputs (US lat/lon), and identifies the data source (National Weather Service). The return summary (named periods with temperature, wind, and short/detailed forecast) makes it easy to distinguish from siblings like weather_current and weather_alerts.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Gives explicit routing guidance: use geocode first if only an address is available, which clearly states an important precondition. It does not explicitly name weather_current as the alternative for current conditions, though 'multi-day forecast' implies the distinction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4/5.0
Disambiguation5/5

Each tool targets a distinct query type: seismic events, elevation, geocoding, weather alerts, current observations, and forecasts. There is no meaningful overlap, and the weather_current/weather_forecast/weather_alerts trio is clearly separated by description.

Naming Consistency4/5

Tool names are lowercase and simple, with a clear weather_ prefix grouping the NWS-related tools. The main minor deviation is geocode being verb-style while earthquakes and elevation are noun-style, but the overall pattern remains predictable.

Tool Count5/5

Six tools is a well-scoped size for a weather and geo intelligence server. Each tool earns its place and together they cover the major natural query categories without unnecessary overlap or bloat.

Completeness4/5

The server supports the core workflow of taking a text location, geocoding it, and then getting elevation, current weather, forecast, or earthquake data. Minor gaps like missing reverse geocoding or location-based alert search are workable but not critical.