Skip to main content
Glama
hniska
by hniska

Find Nearby Weather Stations

get_weather_stations_near_location

Find weather measurement stations near a geographic location using WGS84 coordinates. Returns Trafikverket stations within a chosen radius, sorted by distance.

Instructions

Find weather measurement stations near a specific geographic location. Returns stations within the specified radius, sorted by distance. Coordinates must be in WGS84 format (latitude, longitude). Example: weather stations near Skellefteå (latitude: 64.75, longitude: 20.95)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of stations to return (default: 50)
latitudeYesLatitude in WGS84 (e.g., 64.75 for Skellefteå)
radiusKmNoSearch radius in kilometers (default: 30)
longitudeYesLongitude in WGS84 (e.g., 20.95 for Skellefteå)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It discloses return ordering ('sorted by distance') and coordinate-format requirements, but does not state read-only safety, authentication needs, or what a returned station contains.

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 front-loaded sentences with no filler: purpose, return behavior, and input-format guidance in order of importance.

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

Completeness4/5

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

For a simple read query with rich schema coverage and no output schema, the description supplies enough to select and invoke the tool. It could state what station fields are returned or how empty results are handled, but these gaps are minor.

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 description coverage is 100%, so the baseline is 3. The description repeats the WGS84 coordinate requirement and example already present in the schema, adding no extra parameter meaning.

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?

The description gives a specific verb ('Find'), resource ('weather measurement stations'), and scope ('near a specific geographic location'), with radius and distance-sorting details that distinguish it from list_weather_stations.

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

Usage Guidelines3/5

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

The description implies when to use it ('near a specific geographic location') but does not explicitly name alternatives or when-not-to-use conditions such as list_weather_stations for non-spatial listing.

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