Skip to main content
Glama

BreckenWander Travel

Build a one-link trip on BreckenWander

build_trip
Read-only

Assemble a complete multi-part trip — flights, hotels, and experiences together — into ONE bookable link with a single checkout. Use this whenever the user wants to plan or book a whole trip rather than a single item. Pass the url values of the chosen flight, hotel, and/or experiences (1-8 items) from fresh search results. Returns trip_url — a single link that opens breckenwander.com with the whole trip pre-loaded for one checkout (plus trip_page_url, a plain summary fallback). Package-only flight fares become bookable when the trip includes a hotel or experience.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemsYesThe `url` values from previous search_flights / search_hotels / search_experiences results (1-8 items). Use fresh results — quotes expire after 30 minutes.
titleNoOptional trip name, e.g. "Rome, Sept 15-20".

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
legsNo
noteNo
titleNo
trip_urlYes
warningsNo
captured_atNo
trip_page_urlYes
quote_expires_atNo
experiences_from_totalNo
firm_total_all_travelersNo

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, so the safety profile is covered. The description adds valuable behavioral context beyond annotations: it returns two URLs (trip_url and trip_page_url) and discloses that 'package-only flight fares become bookable when the trip includes a hotel or experience.' This is useful, non-obvious behavior.

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?

The description is four sentences, front-loaded with the primary purpose. Every sentence adds information: what it does, when to use it, how to pass parameters, and return values/edge cases. It is denser than necessary but still concise with no fluff.

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?

Given the tool's moderate complexity (2 params, 1 required, output schema exists), the description covers the key aspects: inputs, outputs, when to use, and an important edge case (package-only fares). It does not mention error handling or prerequisites beyond 'fresh results,' but the output schema and annotations fill some gaps. Overall, it is sufficiently complete for an agent to select and invoke the tool correctly.

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

Parameters4/5

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

Schema coverage is 100% (both parameters have descriptions in the schema), so the baseline is 3. The description adds meaningful context beyond the schema by specifying that items are 'url values of the chosen flight, hotel, and/or experiences' and that they must come from 'fresh search results,' which adds clarity about the expected input format and freshness requirement.

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 'assemble[s] a complete multi-part trip' into 'ONE bookable link with a single checkout,' which is a specific verb+resource. It is easily distinguished from sibling search tools, as this is the only tool that builds a trip rather than searching for items.

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 explicitly states when to use it: 'whenever the user wants to plan or book a whole trip rather than a single item.' It also implies a prerequisite (passing values from fresh search results). While it does not name an alternative tool explicitly, the 'rather than a single item' exclusion provides clear guidance.

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.