Skip to main content
Glama

air-routes.com

route_detail

Detail for one route (e.g. 'OTP-BCN'): airlines, schedule and seasonality. Data: scheduled passenger routes operating now, with seasonality labels — not fares, not booking, not date-specific schedules.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
route_idYes
include_charterNo

Schema Changelog

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

  1. First observed

TDQS

B3.4/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 burden of behavioral disclosure. It adds useful context about data currency and scope, but it does not state whether the operation is read-only, whether permissions are needed, or how invalid route ids are handled. The provided context is helpful but not comprehensive.

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 tight sentences with no filler. The core action, example, data scope, and exclusions are all front-loaded and each sentence earns its place.

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

Completeness2/5

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

For a tool with no annotations, no output schema, and two parameters (one undocumented in any way), the description leaves important gaps: parameter semantics are mostly unexplained, return shape is not described, and no guidance is given for choosing between this and sibling tools. The data-scope caveats help, but the agent is still under-informed.

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

Parameters2/5

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

Schema description coverage is 0%, and the description does not compensate. It only gives an example route id ('OTP-BCN'), hinting at format, but it never explains the required route_id semantics or the meaning of include_charter, which is a non-obvious boolean flag that an agent would likely have to guess about.

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

Purpose4/5

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

The description states a specific verb and resource: 'Detail for one route' and lists what is included (airlines, schedule, seasonality) with a concrete example. It is conceptually distinct from the sibling tools (airport_destinations, find_connections, resolve_airport), but it does not explicitly name or differentiate them, so it stops short of a 5.

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?

The description gives clear context about the data scope ('scheduled passenger routes operating now, with seasonality labels') and explicit exclusions ('not fares, not booking, not date-specific schedules'). This tells an agent what the tool is not for, though it does not name alternative tools for those cases.

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

A3.9/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: resolving place names, listing one route's details, listing all destinations from a hub, and finding multi-leg connections. The descriptions explicitly position airport_destinations as the broader alternative to route_detail, removing ambiguity.

Naming Consistency3/5

All names are lowercase snake_case and readable, but they mix noun phrases (airport_destinations, route_detail) with imperative verbs (find_connections, resolve_airport). A more consistent verb_noun pattern like list_airport_destinations or get_route_detail would improve predictability.

Tool Count5/5

Four tools is well-scoped for a flight-route data server: resolving input, inspecting a single route, expanding a hub, and planning connections. Each tool serves a distinct query type without unnecessary bloat.

Completeness4/5

The core workflows of route lookup, hub exploration, and connection finding are covered. Minor gaps exist, such as no direct listing of inbound routes to an airport or airline-specific search, but these are workarounds via existing tools.

Resources