Skip to main content
Glama
thealexauer

google-flights-mcp

by thealexauer

get_booking_options

Retrieve airline-direct and third-party booking links and prices for a selected flight using its booking token. Requires a token from a previous search result.

Instructions

Get direct airline booking links and prices for selected flights. Requires a booking_token from a previous search result. Returns airline-direct and third-party booking URLs with prices.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
booking_tokenYesBooking token from a flight search result. Found in the flight's booking_token field.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations provided, so description carries the burden. It adds that booking_token is required and what the return type is (airline-direct and third-party URLs with prices). However, it does not disclose whether this is a read-only operation, if it fetches live prices, or any rate limits.

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, front-loaded with purpose and prerequisites, no waste. Each sentence earns its place.

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 with one parameter and no output schema, the description is nearly complete: it states the purpose, prerequisite, and return content. It could mention whether the links expire or if prices are current, but overall adequate.

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%, so the schema already fully documents the booking_token parameter. The description adds no new syntactic or format details beyond what the schema provides; baseline 3 is appropriate.

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?

States a specific verb ('Get'), resource ('booking links and prices'), and scope ('for selected flights'). Clearly distinguishes from siblings like search_flights and search_multi_city.

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?

Implies usage context by requiring a booking_token from a previous search, which implicitly tells when to use it (after a flight search). However, it does not explicitly name alternatives or provide when/when-not guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.