Skip to main content
Glama

BreckenWander Travel

Search flights on BreckenWander

search_flights
Read-only

Search round-trip flights between two airports for given dates and travelers. Returns BreckenWander's per-traveler round-trip price with taxes and carrier-imposed fees included, plus a link that opens the same search on breckenwander.com to complete the booking. Read-only: does not book or take payment. Combine with hotels and experiences into one trip using build_trip.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNoResult ordering. 'best' (default) balances price, travel time, and stops; 'price' is strictly lowest fare first; 'duration' is shortest outbound travel time first.best
cabinNoCabin class.economy
adultsNoNumber of adult travelers.
originYesOrigin IATA airport or metro code, e.g. "JFK" or "LON".
infantsNoNumber of infant travelers (under 2).
childrenNoNumber of child travelers (2-11).
max_stopsNoMaximum stops on the outbound leg. 0 returns nonstop flights only.
depart_dateYesDeparture date in YYYY-MM-DD.
destinationYesDestination IATA airport or metro code, e.g. "LAX" or "CUN".
max_resultsNoHow many flight options to return.
return_dateYesReturn date in YYYY-MM-DD. Round-trip only for now.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
flightsYes

TDQS

A4.3/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 reinforces this by stating 'does not book or take payment'. It adds valuable behavioral detail: prices are per-traveler and include taxes/fees, and the returned link opens the same search for booking completion. This goes beyond the annotations in describing what the tool actually returns.

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?

Three sentences: the first states the action, the second describes the return value and booking link, the third confirms safety and integration guidance. Every sentence earns its place, with no fluff or repetition. Front-loaded with the main purpose.

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?

Given the tool's complexity (11 params, output schema present, clear annotations), the description covers all essentials: scope (round-trip), pricing inclusivity, booking link, safety, and how to combine with other tools. The output schema exists, so return values are already documented. The description is complete for an agent to select and invoke this tool appropriately.

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 coverage is 100% as every one of the 11 parameters has a description in the input schema. The tool description only vaguely references 'two airports', 'given dates and travelers', which maps to the obvious required parameters but adds no new parameter-level details beyond the schema. Baseline of 3 is appropriate since the schema carries the parameter semantics.

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 begins with the specific verb 'Search' and the resource 'round-trip flights between two airports', making the tool's core function immediate and unambiguous. It distinguishes from sibling tools (search_hotels, search_experiences) by explicitly focusing on flights and mentioning integration with build_trip for combined trips.

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 states this tool is for round-trip flight searches and is read-only, which helps set expectations. It also points to build_trip as the way to combine flights with hotels/experiences, giving a clear usage context. However, it does not explicitly state alternatives for one-way searches or when to prefer a different tool, though the sibling names make this reasonably inferable.

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

Each tool addresses a distinct action: searching flights, hotels, experiences, and assembling a trip. There is no overlap in purpose.

Naming Consistency5/5

All tools use lowercase with underscores and a verb_noun pattern: search_flights, search_hotels, search_experiences, build_trip. The naming is uniform and predictable.

Tool Count5/5

With exactly 4 tools covering the core travel workflow (three searches and one assembler), the count is well-scoped and neither too sparse nor overly bulky.

Completeness5/5

The set covers the full journey from searching individual components to combining them into a bookable trip, with no obvious dead ends. Searches are read-only and direct booking links are provided, while build_trip handles combination.