Skip to main content
Glama

Airports reachable from an origin

reachable_from
Read-only

How far the network stretches from one airport within a stop budget: totals, breakdown by stop count and by country. Pass country to list the individual reachable airports there with their minimum stops.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
originYesThree-letter IATA airport code, e.g. "IST"
countryNoList the reachable airports in this ISO 3166-1 alpha-2 country
max_stopsNoMaximum intermediate stops (default 1; 0 = nonstop only)

TDQS

A4.3/5.0
Behavior4/5

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

The annotations already declare readOnlyHint=true, so the description only needs to add behavioral details. It does so by explaining that the output format changes when the country parameter is passed (listing individual airports with minimum stops) and that results are aggregated by stop count and country. This goes beyond the annotations and gives the agent useful calling context.

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?

The description is two sentences, front-loaded with the core purpose and output shape, and then clarifies the country parameter's effect. Every sentence earns its place with no redundant or vague wording.

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 read-only tool with good annotations and a fully described schema, the description is sufficiently complete. It explains both default behavior (totals and breakdowns) and the optional country-driven detail output, so an agent understands what to expect without an output schema. No obvious call context is missing.

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

Parameters4/5

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

Schema description coverage is 100%, so baseline is 3. The description adds meaning by tying max_stops to 'stop budget' and explicitly explaining that the country parameter switches the output from totals/breakdowns to a per-airport list with minimum stops. This reinforces the schema and clarifies how the parameters affect results.

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 clearly explains what the tool computes: network reachability from one airport within a stop budget, returning totals, stop-count breakdowns, and country breakdowns. It also specifies that providing a country lists individual reachable airports with minimum stops. This distinguishes it from siblings like destinations_from by focusing on stop-budget reachability rather than simple destination listings.

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 usage context (when you need reachability within stop constraints and aggregate/country breakdowns) but does not explicitly mention alternatives or when not to use this tool. There is no reference to sibling tools or any exclusions, so guidance is only implied.

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.2/5.0
Disambiguation4/5

Most tools have clearly distinct purposes, but destinations_from and reachable_from could be confused by an agent; their descriptions clarify that one is nonstop while the other respects a stop budget. Otherwise, each tool targets a different query type, so mistakes should be rare.

Naming Consistency3/5

The naming mixes verb-led patterns (find_airport, find_connections, find_meetup) with noun/preposition styles (airline_routes, destinations_from, route_details, reachable_from, most_connected_airports). While all are readable and snake_case, the lack of a single consistent convention makes the tool names less predictable.

Tool Count5/5

With 8 tools, the server is well-scoped for the flight-route exploration domain. Each tool serves a distinct purpose, and the count is neither sparse nor overwhelming.

Completeness5/5

The tool set covers the full lifecycle of route discovery: airport lookup, airline networks, direct destinations, multi-stop paths, meetup planning, connectivity rankings, reachable range, and route details. There are no significant gaps within the stated domain of route data (no fares/dates is an intentional limitation, not an omission).

Resources