Skip to main content
Glama

Search Flights on Tripuck

search_flights
Read-only

Tripuck flight meta-search — real-time fare comparison across 700+ airlines and 50+ online travel agencies. Use this tool when the user asks for flight prices, e.g. "Istanbul to Antalya tomorrow", "cheapest Paris ticket", "yarın Londra'ya uçuş", "رحلة إلى دبي غداً", "Flüge nach Berlin". Inputs: IATA codes (IST, AYT, LHR...) and dates in YYYY-MM-DD. Results deep-link to Tripuck.com for detailed review and booking. The LLM MUST infer the user language from the conversation and pass it via the locale parameter ("tr" Turkish, "en" English, "ar" Arabic, "az" Azerbaijani, "de" German, "ka" Georgian, "uz" Uzbek). All widget UI text and the text response are then returned in that language. If currency is not specified, a sensible default is picked from the locale (tr→TRY, en→USD, de→EUR, ar→USD, az→AZN, ka→GEL, uz→UZS).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
adultsNoAdult passengers (12+ years).
localeNoUser language as BCP-47 or 2-letter code. Supported: "tr" Turkish, "en" English, "ar" Arabic, "az" Azerbaijani, "de" German, "ka" Georgian, "uz" Uzbek. The LLM MUST infer this from the conversation and pass it explicitly; widget UI and response text will be rendered in this language.
originYesDeparture IATA code (3 letters). Examples: "IST" Istanbul, "AYT" Antalya, "LHR" London Heathrow.
infantsNoInfant passengers (0-2 years).
childrenNoChild passengers (2-11 years).
currencyNoISO 4217 currency code. Examples: TRY, USD, EUR, AZN, GEL, UZS. If omitted, a sensible default is picked from the locale (tr→TRY, en→USD, de→EUR, ar→USD, az→AZN, ka→GEL, uz→UZS).
cabinClassNoCabin class.economy
returnDateNoReturn date in YYYY-MM-DD — only for round-trip. Must be today or future, and after `departureDate`.
destinationYesArrival IATA code (3 letters). The LLM should translate city names to IATA codes.
departureDateYesDeparture date in YYYY-MM-DD. MUST be today or in the future. IMPORTANT: do NOT default the year to your training-time "current year" — use the actual upcoming travel date the user intends; if the user does not specify a year, infer it from the conversation date context (often the current calendar year or next year).

TDQS

A4.2/5.0
Behavior4/5

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

The annotations already declare readOnlyHint=true and destructiveHint=false, and the description adds important behavioral context: it mandates that the LLM 'MUST infer the user language from the conversation and pass it via the locale parameter' and explains that UI text and responses are localized. It also discloses that results deep-link to Tripuck.com for booking. No contradictions.

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 well-structured, leading with the core purpose, then usage examples, input format, and language/currency behavior. Every sentence adds value, and the length is appropriate for a tool with 10 parameters. It is front-loaded with the most important information.

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?

For a tool without an output schema, the description covers the essential context: what it does, when to use it, required input formats, and how locale/currency defaults work. It also gives a hint about the response (deep-linking to Tripuck.com for review/booking). However, it doesn't describe the structure of the fare results, which would be helpful for an agent to set expectations.

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 already covers all 10 parameters with 100% coverage, including descriptions for IATA codes, date formats, locale, and currency defaults. The description reiterates these conventions (e.g., 'Inputs: IATA codes (IST, AYT, LHR...) and dates in YYYY-MM-DD') but doesn't add new semantic meaning beyond what the schema provides. It does emphasize the mandatory inference of locale, but that's already in the schema.

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 opens with 'Tripuck flight meta-search — real-time fare comparison across 700+ airlines and 50+ online travel agencies,' which clearly states the tool's function (searching/comparing flight prices) and scope. It also provides concrete query examples ('Istanbul to Antalya tomorrow') and input conventions, distinguishing it from siblings like flight_details (which handles specific flight details) even though it doesn't explicitly name alternatives.

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 says 'Use this tool when the user asks for flight prices' and lists multilingual examples, making the trigger conditions clear. However, it does not mention when not to use it or reference alternatives like cheapest_dates or flight_details, so it lacks exclusions.

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

Each tool targets a distinct travel need: flight search, hotel search, eSIM search, price calendar, popular routes, meeting point coordination, and flight details. No two tools overlap in their core function; even cheapest_dates vs search_flights are clearly separated by use case (flexible date overview vs specific trip search).

Naming Consistency4/5

All tool names use lowercase snake_case and are reasonably descriptive. There is a mix of verb-first (search_flights, search_hotels, search_esim, find_meeting_point) and noun/adjective-first (cheapest_dates, popular_routes, flight_details), but the pattern is consistent enough that an agent can predict naming conventions.

Tool Count5/5

Seven tools is well-scoped for a travel search server. Each tool serves a distinct and valuable purpose, covering flights, hotels, eSIM, inspiration, and group coordination without bloat or redundancy.

Completeness4/5

The tool surface covers the core travel search lifecycle: search flights, search hotels, search eSIM, plus helpful extras like cheapest dates and popular routes. Minor gaps exist—for example, no hotel details tool or car rental search—but these are not fatal for the server's primary search-driven purpose.

Resources