Skip to main content
Glama

Find best seats

find_best_seats
Read-only

Find the best available seats on a flight matching user preferences like window, aisle, extra legroom, exit row, quiet zone, etc. Returns a ranked list and an interactive seatmap with recommended seats highlighted.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cabin_classNoOptional cabin class filter
flight_dateNoOptional flight date in YYYY-MM-DD format
preferencesYesSeat preferences to match
flight_numberYesFlight number, e.g. 'QF1'

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, and the description's 'Find/Returns' language is fully consistent with that safety profile. It adds behavioral context beyond the annotations by describing the return form — a ranked list plus an interactive seatmap with highlighted recommendations — and the 'available seats' wording aligns with openWorldHint=true (live availability). No contradiction.

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

Conciseness4/5

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

Two sentences with the action front-loaded and a useful return-format payoff in the second sentence. The preference enumeration is slightly redundant with the schema enum, but it aids quick comprehension without bloating the text.

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?

With no output schema, the description adequately conveys what the caller gets back — a ranked seat list plus an interactive seatmap with highlights. Combined with full schema coverage and safety annotations, an agent has enough to invoke the tool correctly; remaining gaps are minor (how 'best' is ranked, behavior when no seats match).

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 schema already documents all four parameters (flight_number, preferences, cabbin_class, flight_date). The description echoes the preferences enum values but adds no format, constraint, or relationship details beyond what the schema provides; baseline 3 applies.

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 opens with a specific verb and resource — 'Find the best available seats on a flight' — and specifies the matching behavior against preferences, followed by a concrete output description ('ranked list and an interactive seatmap with recommended seats highlighted'). It clearly states what the tool does, but it does not explicitly distinguish it from close siblings like interactive_seat_finder or get_seatmap.

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 embeds a clear usage context: this is the tool to use when seats must be ranked against user preferences such as window, aisle, extra legroom, exit row, or quiet zone. It stops short of naming alternatives or exclusions, so an agent must infer when to prefer it over get_seatmap or get_seat_info.

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.8/5.0
Disambiguation2/5

Alerts, search, and reviews are clearly distinct, but find_best_seats, interactive_seat_finder, get_seat_info, and get_seatmap all render interactive seatmaps and overlap in purpose. find_best_seats and interactive_seat_finder are especially hard to distinguish despite minor differences in preferences.

Naming Consistency4/5

Most tools follow a verb_noun pattern like create_seat_alert, list_seat_alerts, get_seat_reviews, and search_flight. The main deviations are interactive_seat_finder, which uses a noun phrase instead of a verb, and get_seatmap as a compound rather than get_seat_map.

Tool Count4/5

10 tools is a reasonable size for a flight seatmap server covering seat maps, search, alerts, reviews, and discovery. The count is slightly less clean because interactive_seat_finder largely duplicates find_best_seats, but the overall scope is still manageable.

Completeness4/5

The core workflow of searching flights, viewing seatmaps, inspecting seats, finding best seats, and managing seat alerts is well covered. Minor gaps include no way to update a seat alert and no way to submit or edit seat reviews, but these are workable limitations.