Skip to main content
Glama

skyaccess

Get a single empty leg flight by id

get_flight
Read-onlyIdempotent

Look up one empty leg flight by its id and return the same fields search_empty_legs returns: route, departure time, all-in price, aircraft type, available seats, amenities and a booking link. Use this to re-check a specific flight you found earlier. Returns a not-available message if the flight is no longer published.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
flightIdYesThe flight id returned in the `flightId` field of a search_empty_legs result

Schema Changelog

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

  1. First observed

TDQS

A4.5/5.0
Behavior5/5

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

Beyond the readOnly and idempotent annotations, the description discloses the exact response shape (same fields as search_empty_legs, with an enumerated list) and an important edge case: a not-available message if the flight is no longer published. This gives the agent useful expectations about the call's behavior.

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 three sentences, front-loads the core action, and every sentence earns its place: what it does, the returned fields, when to use it, and the stale-flight edge case. There is no redundant 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 simple single-parameter read-only lookup with no output schema, the description is complete: it specifies the input, the return fields, the usage context, and the not-found behavior. Sibling tools and annotations cover the remaining context.

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?

The schema already documents flightId fully, including its source in the search_empty_legs result, and schema coverage is 100%. The description adds no new parameter meaning beyond saying 'by its id,' so the baseline score of 3 is appropriate.

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 uses a specific verb ('Look up') and a precise resource ('one empty leg flight by its id'), and it clearly distinguishes this tool from the sibling search_empty_legs by noting it returns the same fields for a single known flight. The purpose is unambiguous and differentiated.

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 a clear use case: re-check a specific flight found earlier via search_empty_legs. It implies the alternative (use search_empty_legs for finding flights) by naming that sibling, though it does not explicitly state when not to use this tool or list all alternative tools.

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

search_empty_legs, get_flight, and booking_handoff all return booking links, so booking_handoff overlaps somewhat with get_flight's existing link output. However, each tool's focus (multi-result search, single-flight detail, customer handoff link) is generally clear from the descriptions.

Naming Consistency4/5

Four tools follow a clear verb_noun pattern: search_empty_legs, get_flight, get_charter_estimate, and request_booking. booking_handoff breaks this pattern as a noun-led compound, but the naming remains readable and only mildly inconsistent.

Tool Count5/5

Five tools is well-scoped for this private aviation domain: flight search, flight detail, charter pricing, and two distinct booking paths. Each tool serves a meaningful step in the workflow without unnecessary overlap or bloat.

Completeness4/5

The set covers the core workflows: discovering empty-leg flights, reviewing a specific flight, handing off a booking link, estimating charter prices, and submitting charter requests. Missing status or cancellation endpoints for in-progress requests are minor gaps since specialist follow-up happens outside the server.

Resources