# ai.gondola/gondola (remote · mcp.gondola.ai)

Travel award search: compare cash vs points on hotels, flights & cars, cents-per-point, and book.

- Trust score: 62/100 (medium)
- Change this week: +27
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `mcp.gondola.ai`: 62/100 (this document), [markdown](https://verifymcp.io/servers/ai-gondola-gondola/mcp.md), [page](https://verifymcp.io/servers/ai-gondola-gondola/mcp)

## Channel facts

- Endpoint: `https://mcp.gondola.ai/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `0.1.4`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 60/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation check failed: no authorisation is required to call this server, and it exposes a tool marked destructive (book_hotel).
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC is configured correctly; the domain's records validate against the full chain to the root.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 61/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 6086 tokens (~179/item across 34 items; 34 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 71/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http ai-gondola-gondola https://mcp.gondola.ai/mcp
```

### Codex

```toml
[mcp_servers.ai-gondola-gondola]
url = "https://mcp.gondola.ai/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "ai-gondola-gondola": {
      "type": "remote",
      "url": "https://mcp.gondola.ai/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add ai-gondola-gondola --url https://mcp.gondola.ai/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  ai-gondola-gondola:
    url: "https://mcp.gondola.ai/mcp"
```

### Other

```json
{
  "mcpServers": {
    "ai-gondola-gondola": {
      "type": "http",
      "url": "https://mcp.gondola.ai/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 62, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-01 (score 61, +2)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 59, +22)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 37, +1)

No change was recorded against any check on this day. Stability & Change Management went from 7 to 10. That category is still filling its 30-day observation window: 2 days of observed history at the previous scan, 3 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-28 (score 36, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-27 (score 35, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 35)

First indexed and scored.

## MCP tools (34)

### `search_hotels` (~451 tokens)

Search for hotels by location and dates with cash AND points pricing.

    Returns hotels with side-by-side cash vs points rates, cents-per-point (CPP) valuation,
    and deal scores so you can recommend the best value. This is Gondola's unique advantage —
    no other travel search shows both cash and points rates together.

    Args:
        location: City name, address, or area to search (e.g. "Tokyo", "Manhattan, New York", "near LAX airport").
        checkin: Check-in date in YYYY-MM-DD format (e.g. "2026-04-15").
        checkout: Check-out date in YYYY-MM-DD format (e.g. "2026-04-20").
        num_adults: Number of adult guests. Defaults to 2.
        chain_name: Optional hotel chain to filter by (e.g. "marriott", "hilton", "hyatt", "ihg").
            Case-insensitive substring match against each result's chain. If nothing matches, the
            unfiltered results are returned with an explicit note so you don't keep retrying.
        loyalty_programs: Optional list of the user's loyalty programs (e.g. ["hilton_honors", "marriott_bonvoy"]).
            When provided, results include personalized earnings and tier benefits like 5th night free.
        loyalty_points: Optional dict of program name to points balance (e.g. {"hilton_honors": 250000}).
            When provided, results indicate whether the user can afford each hotel with points.
        limit: Max number of hotels to return (default 20). The response notes how many more exist
            and how to narrow; raise this only when the user explicitly wants a longer list.

    Returns:
        Formatted list of hotels with cash rates, points rates, CPP valuation, and deal recommendations.

Input parameters:

- `chain_name`
- `checkin` (string, required)
- `checkout` (string, required)
- `limit` (integer)
- `location` (string, required)
- `loyalty_points`
- `loyalty_programs`
- `num_adults` (integer)

Output parameters:

- `result` (string)

### `get_hotel_details` (~168 tokens)

Get detailed information, room types, and rates for a specific hotel.

    Use this after search_hotels to get full details for a hotel the user is interested in.
    Returns room options with pricing, cancellation policies, and amenities.

    Args:
        hotel_id: The hotel's Vervotech property ID (returned by search_hotels).
        checkin: Check-in date in YYYY-MM-DD format.
        checkout: Check-out date in YYYY-MM-DD format.
        num_adults: Number of adult guests. Defaults to 2.

    Returns:
        Detailed hotel information including rooms, rates, policies, and amenities.

Input parameters:

- `checkin` (string, required)
- `checkout` (string, required)
- `hotel_id` (integer, required)
- `num_adults` (integer)

Output parameters:

- `result` (string)

### `compare_rates` (~187 tokens)

Compare cash vs points rates across multiple hotels side-by-side.

    Use this after search_hotels to help a user decide between their top hotel picks.
    Returns a comparison table with cash rate, points rate, CPP valuation, and value signals
    for each hotel, highlighting the best cash value and best points value.

    Args:
        hotel_ids: List of hotel IDs to compare (max 5). Get these from search_hotels results.
        checkin: Check-in date in YYYY-MM-DD format.
        checkout: Check-out date in YYYY-MM-DD format.
        num_adults: Number of adult guests. Defaults to 2.

    Returns:
        Side-by-side comparison of cash vs points rates with recommendations.

Input parameters:

- `checkin` (string, required)
- `checkout` (string, required)
- `hotel_ids` (array, required)
- `num_adults` (integer)

Output parameters:

- `result` (string)

### `get_booking_link` (~365 tokens)

Get booking options for a hotel.

    Presents two explicit booking paths so the path is settled up front rather
    than discovered mid-conversation:

    1. **Check out on Gondola** with a booking link — always available.
    2. **Book here now** with an eligible saved card — shown only when the user
       has a card that can be charged in chat, and referenced by its last 4.

    Anonymous users get path 1 plus a prompt to sign up for in-chat booking.

    Use this after search_hotels or get_hotel_details when a user wants to book.
    Pass ``gondola_rate_id`` whenever a specific rate has been surfaced (from
    get_hotel_details or compare_rates) so the link lands on that rate's
    checkout page instead of the generic hotel page.

    Args:
        hotel_id: The hotel's Vervotech property ID (from search_hotels results).
        checkin: Check-in date in YYYY-MM-DD format.
        checkout: Check-out date in YYYY-MM-DD format.
        num_adults: Number of adult guests. Defaults to 2.
        children_ages: Comma-separated ages of children (e.g. "5,8"). Empty string if no children.
        gondola_rate_id: Optional rate ID from get_hotel_details/compare_rates. When provided,
            the link deep-links straight to that rate's checkout page.

    Returns:
        Booking instructions tailored to the user's auth status.

Input parameters:

- `checkin` (string, required)
- `checkout` (string, required)
- `children_ages` (string)
- `gondola_rate_id`
- `hotel_id` (integer, required)
- `num_adults` (integer)

Output parameters:

- `result` (string)

### `book_hotel` (~499 tokens)

Book a hotel room using a rate from get_hotel_details.

    Requires a Gondola account (API key) and a saved payment method.
    Use get_payment_methods to find your payment ID.

    The gondola_rate_id comes from the room rates returned by get_hotel_details —
    each room option has a rate ID you can use here.

    Guest details (given_name, family_name, email_address, phone_number) can either be
    passed directly or prefilled from a saved travel profile: pass travel_profile_id
    (from get_travel_profiles) to book "as <traveler>" without collecting each field.
    Any field you also pass explicitly overrides the profile.

    To earn points and elite credit, pass loyalty_account_id — use the Member Number from
    get_loyalty_accounts that matches the hotel's chain (e.g. the World of Hyatt account
    for a Hyatt property). When a loyalty_account_id is passed, the booking goes out under
    the email registered to that membership (overriding any travel profile or email_address),
    so the stay credits to the right account.

    Args:
        gondola_rate_id: The rate ID from get_hotel_details room rates.
        payment_id: Payment method ID from get_payment_methods.
        given_name: Guest's first name (optional if travel_profile_id is provided).
        family_name: Guest's last name (optional if travel_profile_id is provided).
        email_address: Guest's email for confirmation (optional if travel_profile_id is provided).
        phone_number: Guest's phone number with country code (optional if travel_profile_id is provided).
        special_request: Optional special request for the hotel (e.g. "high floor", "late check-in").
        loyalty_account_id: Optional Member Number (from get_loyalty_accounts) to earn points.
        travel_profile_id: Optional travel profile ID (from get_travel_profiles) to prefill guest details.

    Returns:
        Booking confirmation with ID and details, or an error message.

Input parameters:

- `email_address` (string)
- `family_name` (string)
- `given_name` (string)
- `gondola_rate_id` (integer, required)
- `loyalty_account_id` (string)
- `payment_id` (string, required)
- `phone_number` (string)
- `special_request` (string)
- `travel_profile_id` (string)

Output parameters:

- `result` (string)

### `get_payment_methods` (~89 tokens)

List the user's saved payment methods for booking.

    Requires a Gondola account (API key). Returns saved credit/debit cards with their brand, last 4
    digits, expiration, payment ID (needed for the book_hotel tool), and whether each card can be
    booked in chat.

    Returns:
        List of saved payment methods with IDs, or instructions to add one.

Output parameters:

- `result` (string)

### `get_rate_alerts` (~66 tokens)

Get all active rate alerts for the current user.

    Returns the user's rate alerts showing which hotels they're monitoring for price drops.
    Requires a Gondola account with an API key.

    Returns:
        List of active rate alerts with hotel names, dates, and current rates.

Output parameters:

- `result` (string)

### `create_rate_alert` (~167 tokens)

Create a rate alert to monitor a hotel for price drops.

    Set up an alert to be notified by email when the rate drops for a specific hotel.
    Optionally specify dates, or leave them out to monitor any stay.
    Requires a Gondola account with an API key.

    Args:
        hotel_id: The hotel's Vervotech property ID (from search results).
        checkin: Check-in date in YYYY-MM-DD format. Must be provided with checkout, or both omitted.
        checkout: Check-out date in YYYY-MM-DD format. Must be provided with checkin, or both omitted.

    Returns:
        Confirmation that the rate alert was created, with notification details.

Input parameters:

- `checkin`
- `checkout`
- `hotel_id` (integer, required)

Output parameters:

- `result` (string)

### `delete_rate_alert` (~75 tokens)

Delete a rate alert so you stop monitoring a hotel for price drops.

    Requires a Gondola account with an API key.

    Args:
        alert_id: The rate alert ID to delete (from get_rate_alerts).

    Returns:
        Confirmation that the rate alert was deleted.

Input parameters:

- `alert_id` (integer, required)

Output parameters:

- `result` (string)

### `get_upcoming_trips` (~80 tokens)

Get the user's upcoming trips including hotel stays, flights, and car rentals.

    Returns a summary of all upcoming travel reservations with dates, confirmation numbers,
    costs, loyalty earnings, and savings opportunities.

    Requires a Gondola account (API key).

    Returns:
        Formatted list of upcoming trips, or instructions to connect an account.

Output parameters:

- `result` (string)

### `get_past_trips` (~122 tokens)

Get the user's past trips including hotel stays and flights.

    Returns a summary of past travel reservations with dates, confirmation numbers,
    costs, and loyalty earnings.

    Requires a Gondola account (API key).

    Args:
        limit: Max number of past trips to return, most recent first (default 20). The response
            notes how many more exist; raise this only when the user wants their full history.

    Returns:
        Formatted list of past trips, or instructions to connect an account.

Input parameters:

- `limit` (integer)

Output parameters:

- `result` (string)

### `get_loyalty_accounts` (~83 tokens)

Get the user's hotel and airline loyalty accounts with points balances and values.

    Returns all linked loyalty accounts including current points balance, tier status,
    estimated cash value, recent points changes, and expiration dates.

    Requires a Gondola account (API key).

    Returns:
        Formatted list of loyalty accounts with balances and values, or instructions to connect.

Output parameters:

- `result` (string)

### `get_free_night_credits` (~84 tokens)

Get the user's free night certificates (award nights) across loyalty programs.

    Returns each certificate's program, how many remain, what it covers, when it
    expires, and whether a points top-up is allowed.

    Requires a Gondola account (API key).

    Returns:
        Formatted list of free night certificates, or instructions to connect.

Output parameters:

- `result` (string)

### `predict_price` (~238 tokens)

Predict whether now is a good time to book a hotel, or if the user should wait for a better price.

    Uses historical price data and trends to assess whether the current price is a good deal.
    Call this when a user asks "Should I book now or wait?" or wants to know if a price is good.

    Args:
        hotel_id: The hotel's Vervotech property ID (from search results).
        checkin: Check-in date in YYYY-MM-DD format.
        checkout: Check-out date in YYYY-MM-DD format.
        nightly_cash_cost: The current nightly cash rate for the hotel.
        nightly_cash_cost_currency: Currency of the cash rate (e.g. "USD", "EUR").
        nightly_points_cost: Optional current nightly points cost for the hotel.

    Returns:
        Price prediction with recommendation (book now vs wait), confidence level, and key signals.

Input parameters:

- `checkin` (string, required)
- `checkout` (string, required)
- `hotel_id` (integer, required)
- `nightly_cash_cost` (number, required)
- `nightly_cash_cost_currency` (string, required)
- `nightly_points_cost`

Output parameters:

- `result` (string)

### `get_hotel_stats` (~163 tokens)

Get pricing analytics and percentile data for a hotel rate.

    Use this to help users understand if a rate is a good deal. Shows how the cash rate
    and points redemption value compare historically across the chain.

    Args:
        hotel_id: The hotel's Vervotech property ID (from search results).
        nightly_cash_cost: The current nightly cash rate.
        nightly_cash_cost_currency: Currency of the cash rate (e.g. "USD", "EUR").
        nightly_points_cost: Optional current nightly points cost.

    Returns:
        Pricing stats with percentile rankings and value assessment.

Input parameters:

- `hotel_id` (integer, required)
- `nightly_cash_cost` (number, required)
- `nightly_cash_cost_currency` (string, required)
- `nightly_points_cost`

Output parameters:

- `result` (string)

### `get_multi_night_rates` (~169 tokens)

Get a rate calendar showing prices across a date range for a hotel.

    Use this when a user has flexible dates and wants to find the cheapest time to stay.
    Shows cash rates, points rates, and value percentiles for each available check-in date.

    Args:
        hotel_id: The hotel's Vervotech property ID (from search results).
        start_date: Start of date range in YYYY-MM-DD format.
        end_date: End of date range in YYYY-MM-DD format.
        nights: Number of nights per stay (default: 1).

    Returns:
        Rate calendar with pricing for each available date.

Input parameters:

- `end_date` (string, required)
- `hotel_id` (integer, required)
- `nights` (integer)
- `start_date` (string, required)

Output parameters:

- `result` (string)

### `get_similar_hotels` (~148 tokens)

Find hotels similar to one the user is looking at.

    Use this when a user wants alternatives, comparisons, or asks "show me hotels like this one."

    Args:
        hotel_id: The hotel's Vervotech property ID (from search results).
        checkin: Check-in date in YYYY-MM-DD format.
        checkout: Check-out date in YYYY-MM-DD format.
        num_adults: Number of adult guests (default: 2).

    Returns:
        List of similar hotels with rates and ratings.

Input parameters:

- `checkin` (string, required)
- `checkout` (string, required)
- `hotel_id` (integer, required)
- `num_adults` (integer)

Output parameters:

- `result` (string)

### `optimize_loyalty_portfolio` (~211 tokens)

Analyze the user's whole loyalty portfolio and surface the highest-value actions.

    Trip-independent. Looks across every loyalty program the user holds — plus the transferable
    card currencies (Amex, Chase, Bilt, etc.) that can feed hotel programs — and reports points
    expiring soon (ranked by value at risk), the best transfer opportunities, and the largest
    balances. When the user's travel profile is available, it also tailors the view to their home
    airport, the airlines they fly, their frequent destinations, and when they travel (e.g.
    flagging points that expire before their usual travel months). Takes no arguments.

    Use this when the user asks how to make the most of their points, what's expiring, or where
    they can transfer. For deciding where to book a specific trip, use search_hotels /
    compare_rates instead.

    Returns:
        A Markdown portfolio summary, or instructions to connect accounts when none are linked.

Output parameters:

- `result` (string)

### `search_flights` (~441 tokens)

Search for flights by route and date and return cash-priced options.

    Results are ranked for the traveler by the search backend — weighing their airline
    loyalty/status and travel history alongside flight quality — and returned 10 per page.
    To see more options, call again with ``page=2``, ``page=3``, and so on.

    Args:
        origin: Origin airport code or city (e.g. "LAX", "SFO", "New York").
        destination: Destination airport code or city (e.g. "NRT", "LHR", "Paris").
        departure_date: Departure date in YYYY-MM-DD format (e.g. "2025-03-15").
        return_date: Optional return date in YYYY-MM-DD format for a round trip. In browse
            mode, round trips are searched as two one-way legs.
        num_passengers: Number of passengers. Defaults to 1.
        cabin_class: Optional cabin class preference. One of:
            "economy", "premium economy", "business", "first".
        mode: Leave as "browse" (default). "book" is a restricted alpha — only use it if
            the user explicitly asks to book a flight.
        page: 1-based results page, 10 options per page. Increment to see more options.
        airlines: Optional airline codes or names for browse mode (e.g. ["UA"] or
            ["United"]). Passed to the Google Flights search API.
        max_stops: Optional maximum stops per direction in browse mode. Use 0 for
            nonstop only, 1 for nonstop or one-stop itineraries.

    Returns:
        A ranked, paged list of flight options — airlines, routes, prices, and a link.

Input parameters:

- `airlines`
- `cabin_class`
- `departure_date` (string, required)
- `destination` (string, required)
- `max_stops`
- `mode` (string)
- `num_passengers` (integer)
- `origin` (string, required)
- `page` (integer)
- `return_date`

Output parameters:

- `result` (string)

### `search_vehicles` (~176 tokens)

Search for rental vehicles at an airport or city.

    Args:
        pickup_location: Airport IATA code (e.g. "LAX", "JFK", "SFO").
        pickup_datetime: Pickup date and time in ISO format (e.g. "2025-03-15T10:00:00").
        dropoff_datetime: Drop-off date and time in ISO format (e.g. "2025-03-20T10:00:00").
        vehicle_class: Optional preference: Economy, Compact, Standard, FullSize, Premium, Luxury, SUV, Van.

    Returns:
        List of available rental vehicles with rates and details.

Input parameters:

- `dropoff_datetime` (string, required)
- `pickup_datetime` (string, required)
- `pickup_location` (string, required)
- `vehicle_class`

Output parameters:

- `result` (string)

### `get_vehicle_details` (~129 tokens)

Get detailed information about a specific rental vehicle option.

    Use this after search_vehicles to get extras, insurance options, charges, and cancellation policy.

    Args:
        vendor_code: Vendor code from search results (e.g. "ZE" for Hertz, "AL" for Alamo).
        rate_code: Rate code from search results.
        search_id: Search ID from the vehicle search results.

    Returns:
        Vehicle details including extras, charges, and policies.

Input parameters:

- `rate_code` (string, required)
- `search_id` (string, required)
- `vendor_code` (string, required)

Output parameters:

- `result` (string)

### `book_vehicle` (~319 tokens)

Book a rental vehicle from a search result.

    Requires a Gondola account (API key) and a saved payment method.
    Use get_payment_methods to find your payment ID.

    Args:
        search_id: Search ID from search_vehicles.
        vendor_code: Vendor code from search results (e.g. "ZE" for Hertz).
        rate_code: Rate code of the selected vehicle from search results.
        acriss_code: ACRISS vehicle classification code from search results.
        given_name: Renter's first name.
        family_name: Renter's last name.
        email_address: Renter's email for confirmation.
        phone_number: Renter's phone number with country code (e.g. "+1-555-123-4567").
        payment_id: Payment method ID from get_payment_methods.
        pickup_location: Optional pickup IATA code for the selected vehicle (disambiguates metro fanouts).
        loyalty_account_id: Optional loyalty account ID to earn points on this rental.

    Returns:
        Booking confirmation with ID and details, or an error message.

Input parameters:

- `acriss_code` (string, required)
- `email_address` (string, required)
- `family_name` (string, required)
- `given_name` (string, required)
- `loyalty_account_id` (string)
- `payment_id` (string, required)
- `phone_number` (string, required)
- `pickup_location` (string)
- `rate_code` (string, required)
- `search_id` (string, required)
- `vendor_code` (string, required)

Output parameters:

- `result` (string)

### `cancel_vehicle_booking` (~52 tokens)

Cancel an existing vehicle booking.

    Args:
        booking_id: The Gondola booking ID (confirmation number) of the vehicle booking.

    Returns:
        Cancellation result.

Input parameters:

- `booking_id` (string, required)

Output parameters:

- `result` (string)

### `get_vehicle_booking` (~63 tokens)

Get details for a specific vehicle booking.

    Args:
        booking_id: The Gondola booking ID (confirmation number).

    Returns:
        Vehicle booking details including vendor, pickup/dropoff, vehicle, rate, and status.

Input parameters:

- `booking_id` (string, required)

Output parameters:

- `result` (string)

### `get_vehicle_booking_link` (~173 tokens)

Get a Gondola.ai deep link for a specific vehicle from search results.

    Authenticated users get instructions to book in-conversation with book_vehicle plus the
    web link as a fallback; anonymous users get the web link directly.

    Args:
        search_id: Search ID from search_vehicles.
        vendor_code: Vendor code from search results.
        rate_code: Rate code of the selected vehicle.
        pickup_datetime: Pickup date and time in ISO format.
        dropoff_datetime: Drop-off date and time in ISO format.

    Returns:
        Booking instructions tailored to the user's auth status.

Input parameters:

- `dropoff_datetime` (string, required)
- `pickup_datetime` (string, required)
- `rate_code` (string, required)
- `search_id` (string, required)
- `vendor_code` (string, required)

Output parameters:

- `result` (string)

### `credit_card_coverage` (~149 tokens)

Look up rental car CDW/LDW coverage provided by a credit card.

    Provide EITHER credit_card_product_name OR card_number_bin + card_provider.

    Args:
        credit_card_product_name: Exact card product name (preferred when known).
        card_number_bin: First 6-8 digits of the card number (BIN).
        card_provider: Card network ("visa", "mastercard", "amex", or "discover"). Required with card_number_bin.

    Returns:
        Coverage type, max days, and a human-readable summary.

Input parameters:

- `card_number_bin` (string)
- `card_provider` (string)
- `credit_card_product_name` (string)

Output parameters:

- `result` (string)

### `get_vehicle_booking_coverage` (~72 tokens)

Get the rental car CDW/LDW coverage stored at booking time for a vehicle booking.

    Args:
        booking_id: The Gondola booking ID of the vehicle booking.

    Returns:
        Coverage details stored on the booking, or an error message.

Input parameters:

- `booking_id` (string, required)

Output parameters:

- `result` (string)

### `get_hotel_reviews` (~94 tokens)

Get guest reviews for a specific hotel.

    Use this to help users understand what other guests thought about a hotel.
    Returns up to 10 recent reviews with ratings and comments.

    Args:
        hotel_id: The hotel's Vervotech property ID (from search results).

    Returns:
        Formatted list of guest reviews with author names, ratings, and review text.

Input parameters:

- `hotel_id` (integer, required)

Output parameters:

- `result` (string)

### `get_suggested_searches` (~65 tokens)

Get personalized travel suggestions and trip inspiration.

    Returns curated hotel recommendations based on the user's preferences, recent searches,
    popular destinations, and upcoming holidays. Great for when the user doesn't know where to go.

    Returns:
        Travel suggestions with preview hotel results.

Output parameters:

- `result` (string)

### `get_booking` (~57 tokens)

Get details for a specific hotel booking.

    Args:
        booking_id: The booking ID or confirmation number.

    Returns:
        Booking details including hotel, dates, room, rate, and status.

Input parameters:

- `booking_id` (string, required)

Output parameters:

- `result` (string)

### `diagnose_rates` (~192 tokens)

Diagnose rate availability and source statuses for a specific hotel.

    Use this to investigate why certain rates (e.g. AAA, member, points)
    are or aren't showing for a property. Shows per-supplier status and
    a full breakdown of every rate by type.

    Args:
        hotel_id: The hotel's Vervotech property ID.
        checkin: Check-in date in YYYY-MM-DD format.
        checkout: Check-out date in YYYY-MM-DD format.
        num_adults: Number of adult guests. Defaults to 2.
        rate_sources: Optional comma-separated rate sources to check
            (e.g. "travelport", "direct,travelport"). If omitted, all sources are checked.

Input parameters:

- `checkin` (string, required)
- `checkout` (string, required)
- `hotel_id` (integer, required)
- `num_adults` (integer)
- `rate_sources`

Output parameters:

- `result` (string)

### `get_travel_profiles` (~115 tokens)

Get the user's saved travel profiles (guest name, email, and phone presets).

    Each profile has a selectable Profile ID. Pass it to book_hotel as `travel_profile_id`
    to prefill the guest details — the same "book as <traveler>" selection the website
    checkout offers — instead of collecting name, email, and phone field by field.

    Requires a Gondola account (API key).

    Returns:
        Formatted list of travel profiles with IDs, or instructions to add one.

Output parameters:

- `result` (string)

### `get_traveler_context` (~140 tokens)

Get the user's saved travel context to personalize recommendations.

    Returns the user's loyalty programs and elite tiers, home airport, preferred airlines and
    cabin, preferred hotel chains, typical trip patterns (business vs leisure, budgets, frequent
    destinations), and any preferences they've stated or that have been learned from past
    conversations. Call this once at the start of a travel or planning session and weigh it across
    hotel, flight, and car recommendations — it is the single best source of who this traveler is.

    Requires a Gondola account (API key).

    Returns:
        Formatted travel context, or instructions to build one.

Output parameters:

- `result` (string)

### `update_traveler_profile` (~184 tokens)

Save a learned travel preference or experience to the user's traveler profile.

    Use when the user shares a durable preference, like, dislike, or trip experience that should
    inform future recommendations — "Always takes a window seat", "Prefers boutique hotels over
    chains", "Vegetarian". Don't save temporary logistics like "my flight lands at 3pm".

    Saved entries come back from get_traveler_context in later sessions, which is how a preference
    stated once is still known next time.

    Requires a Gondola account (API key).

    Args:
        profile_entry: The preference or experience to save. Be specific and actionable.
            Good: "Prefers ocean-view rooms". Bad: "Liked the hotel".

    Returns:
        Confirmation of the saved entry, or an error message.

Input parameters:

- `profile_entry` (string, required)

Output parameters:

- `result` (string)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/ai-gondola-gondola/mcp#diagnostics

## Score history

- 2026-08-03: 62
- 2026-08-02: 62
- 2026-08-01: 61
- 2026-07-30: 59
- 2026-07-29: 37
- 2026-07-28: 36
- 2026-07-27: 35
- 2026-07-26: 35

## Links

- Remote endpoint: https://mcp.gondola.ai/mcp
- Repository: https://github.com/gondola-ai/gondola-mcp
- Website: https://www.gondola.ai/
- Changelog RSS feed: https://verifymcp.io/servers/ai-gondola-gondola/mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/ai-gondola-gondola/mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/ai-gondola-gondola/mcp
