Skip to main content
Glama

cheapest_flights

Find the cheapest flights across a full month. Returns price-sorted options with dates, airlines, and price insights.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
monthNoMonth to search YYYY-MM (e.g., 2026-06)
arrivalNoArrival airport IATA code
countryNoCountry code (default: us)
currencyNoCurrency code (default: USD)
departureNoDeparture airport IATA code

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries the transparency burden. It discloses that results are price-sorted and include dates, airlines, and price insights, but it does not mention parameter dependencies (e.g., needing at least one of departure/arrival) or potential error conditions, which are relevant for a tool with zero required parameters.

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 primary purpose and a concise summary of return content. Every word earns its place with no filler.

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?

The description covers the output shape but leaves critical gaps: all parameters are optional in the schema, yet the description does not clarify if any are needed or how defaults work. There is no guidance on parameter interactions (e.g., departure/arrival requirements), and sibling differentiation is absent. Without an output schema or annotations, this is insufficient for full agent decision-making.

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 input schema covers all 5 parameters with descriptions, so the description need not repeat them. The description adds no extra semantic detail about parameters like month format or IATA codes, so the baseline 3 applies.

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 states the tool's function: 'Find the cheapest flights across a full month.' This specifies the action (find cheapest flights), the resource (flights), and the scope (full month), and it distinguishes from siblings like flight_search or one_way_search by emphasizing month-wide, price-optimized search.

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 for month-wide cheapest-flight searches but provides no explicit when-to-use or exclusions. It does not name alternatives like flight_search or price_calendar, so the agent must infer when this tool is the right choice.

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

Most tools have distinct purposes (airport codes, multi-city, airline comparison), but flight_search and one_way_search overlap since flight_search already covers one-way trips. Descriptions help differentiate, but some confusion is possible.

Naming Consistency5/5

All tools use consistent snake_case naming with a pattern of descriptive nouns or adjective-noun pairs (e.g., cheapest_flights, price_calendar). No mixing of styles.

Tool Count5/5

8 tools cover the flight search domain well without being excessive. Each tool serves a specific purpose, and the count is appropriate for the server's scope.

Completeness5/5

The tool set covers key flight search needs: airport codes, round-trip/one-way/multi-city searches, price calendars, airline comparisons, and health check. No obvious gaps in the search/info domain.