Skip to main content
Glama

Server Details

Search flights by route, dates, passengers, and cabin class. By Alice, Israel's travel app.

Ownership verified
Status
Healthy
OAuth
Works in Glama
Last Tested
Transport
Streamable HTTP
URL

TDQS

A4.2/5.0

Scored across 1 tool

Disambiguation5/5

With only one tool, there is no possibility of confusing it with others; its purpose is entirely clear and self-contained.

Naming Consistency5/5

The single tool uses a clear verb_noun pattern ('search_flights'), so there is no inconsistency or mixed convention to evaluate.

Tool Count3/5

A single tool is quite thin for a flights server, though it is well-focused and not trivial. The server would feel more complete with at least a couple of related operations.

Completeness4/5

The core flight search use case is well covered, including categories and booking links, but the server lacks any additional flight-related operations such as status lookup or booking management.

Available Tools

1 tool
search_flightsSearch FlightsA
Read-only
Inspect

Search flights between any two cities worldwide, including all routes to and from Tel Aviv (TLV / Ben Gurion). Supports Hebrew results with full right-to-left layout. Returns a curated set of options, each tagged with one or more categories:

  • best: the engine's recommended balance of price, total duration, and stops.

  • cheapest: lowest total price.

  • fastest: shortest total travel time. The categories overlap — a single flight can be both best and cheapest. Each option includes price, total durations, layovers, its categories, and a direct booking link. Options may include seats_remaining — the number of seats left in this booking class at this price; values of 4 or fewer indicate limited availability.

ParametersJSON Schema
NameRequiredDescriptionDefault
adultsNoNumber of adult passengers (0–9)
originYes3-letter IATA city or airport code (e.g. 'TLV', 'LON', 'MAD')
infantsNoNumber of infant passengers (0–9)
seniorsNoNumber of senior passengers (0–9)
childrenNoNumber of child passengers (0–9)
languageNoLanguage for the interactive results widget. Set 'he' when the conversation is in Hebrew; defaults to English.en
destinationYes3-letter IATA city or airport code (e.g. 'TLV', 'LON', 'MAD')
return_dateNoReturn date for round trips (YYYY-MM-DD). Omit for one-way.
flight_classNoCabin class: tour (economy), tourPlus (premium economy), business, or firsttour
departure_dateYesDeparture date in YYYY-MM-DD format

Output Schema

ParametersJSON Schema
NameRequiredDescription
queryYesThe search parameters, with defaults applied
totalYesTotal matches found, which may exceed `flights.length`
flightsYesMatching options, capped at 30

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already indicate read-only, open-world, and non-destructive behavior. The description adds useful behavioral details such as the interactive results widget, RTL Hebrew support, and the meaning of seats_remaining/limited availability, going beyond the annotations without contradicting them.

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 well-structured with actionable output details and category definitions. It is slightly longer than necessary, repeating some info already in the parameter schema, but each sentence adds meaningful context about results and behavior.

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, the description adequately covers the output format, category semantics, booking links, seat availability, and language behavior. It supplies enough context for an agent to call the tool and interpret results correctly.

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% with every parameter already described. The description adds slight context for origin/destination (TLV/Ben Gurion) and language behavior, but mostly restates information already present in the schema, so it remains at baseline.

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's purpose: searching flights between any two worldwide cities, including routes to/from Tel Aviv. It specifies the resource (flights) and the action (search), making it unambiguous even without sibling tools.

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 gives clear context on what the tool does and what it returns, including result categories and booking links. It does not explicitly state when not to use it or mention alternatives, but with no sibling tools, the guidance is adequate.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 1 tool update
    • Changedsearch_flights1 field changed
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "http://json-schema.org/draft-07/schema#",
        +  "additionalProperties": false,
        +  "properties": {
        +    "flights": {
        +      "description": "Matching options, capped at 30",
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "categories": {
        +            "description": "Which curated selections this flight appeared in; may be more than one",
        +            "items": {
        +              "enum": [
        +                "best",
        +                "cheapest",
        +                "fastest"
        +              ],
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "currency": {
        +            "description": "ISO currency code of `price`",
        +            "type": "string"
        +          },
        +          "deep_link": {
        +            "description": "Link to complete this booking on alice.co.il",
        +            "type": "string"
        +          },
        +          "inbound": {
        +            "$ref": "#/properties/flights/items/properties/outbound",
        +            "description": "Absent on one-way trips"
        +          },
        +          "outbound": {
        +            "additionalProperties": false,
        +            "properties": {
        +              "arrival_local": {
        +                "type": "string"
        +              },
        +              "departure_local": {
        +                "type": "string"
        +              },
        +              "duration_minutes": {
        +                "type": "number"
        +              },
        +              "flights": {
        +                "items": {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "arrival_local": {
        +                      "type": "string"
        +                    },
        +                    "brand": {
        +                      "description": "Fare brand, e.g. 'LITE', 'FLEX'",
        +                      "type": "string"
        +                    },
        +                    "cabin": {
        +                      "description": "Raw cabin code, e.g. 'Y', 'C'/'J', 'F'",
        +                      "type": "string"
        +                    },
        +                    "checked_bag_included": {
        +                      "type": "boolean"
        +                    },
        +                    "departure_local": {
        +                      "type": "string"
        +                    },
        +                    "duration_minutes": {
        +                      "type": "number"
        +                    },
        +                    "flight_number": {
        +                      "type": "string"
        +                    },
        +                    "from": {
        +                      "type": "string"
        +                    },
        +                    "seats_remaining": {
        +                      "type": "number"
        +                    },
        +                    "terminal_from": {
        +                      "type": "string"
        +                    },
        +                    "terminal_to": {
        +                      "type": "string"
        +                    },
        +                    "to": {
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "from",
        +                    "to",
        +                    "departure_local",
        +                    "arrival_local",
        +                    "flight_number",
        +                    "duration_minutes"
        +                  ],
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "from": {
        +                "type": "string"
        +              },
        +              "layovers": {
        +                "items": {
        +                  "additionalProperties": false,
        +                  "properties": {
        +                    "airport_code": {
        +                      "type": "string"
        +                    },
        +                    "arrival_local": {
        +                      "type": "string"
        +                    },
        +                    "departure_local": {
        +                      "type": "string"
        +                    }
        +                  },
        +                  "required": [
        +                    "airport_code",
        +                    "arrival_local",
        +                    "departure_local"
        +                  ],
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "to": {
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "from",
        +              "to",
        +              "departure_local",
        +              "arrival_local",
        +              "duration_minutes",
        +              "flights",
        +              "layovers"
        +            ],
        +            "type": "object"
        +          },
        +          "price": {
        +            "description": "Total trip price for all passengers",
        +            "type": "number"
        +          },
        +          "pricing_details": {
        +            "items": {
        +              "additionalProperties": false,
        +              "properties": {
        +                "passenger_type": {
        +                  "enum": [
        +                    "ADT",
        +                    "CHD",
        +                    "INF",
        +                    "YCD"
        +                  ],
        +                  "type": "string"
        +                },
        +                "total_price": {
        +                  "type": "number"
        +                }
        +              },
        +              "required": [
        +                "passenger_type",
        +                "total_price"
        +              ],
        +              "type": "object"
        +            },
        +            "type": "array"
        +          },
        +          "seats_remaining": {
        +            "description": "Seats bookable at this price; 4 or fewer means limited availability",
        +            "type": "number"
        +          }
        +        },
        +        "required": [
        +          "outbound",
        +          "pricing_details",
        +          "categories"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "query": {
        +      "additionalProperties": false,
        +      "description": "The search parameters, with defaults applied",
        +      "properties": {
        +        "adults": {
        +          "default": 1,
        +          "description": "Number of adult passengers (0–9)",
        +          "maximum": 9,
        +          "minimum": 0,
        +          "type": "integer"
        +        },
        +        "children": {
        +          "default": 0,
        +          "description": "Number of child passengers (0–9)",
        +          "maximum": 9,
        +          "minimum": 0,
        +          "type": "integer"
        +        },
        +        "departure_date": {
        +          "description": "Departure date in YYYY-MM-DD format",
        +          "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
        +          "type": "string"
        +        },
        +        "destination": {
        +          "description": "3-letter IATA city or airport code (e.g. 'TLV', 'LON', 'MAD')",
        +          "maxLength": 3,
        +          "minLength": 3,
        +          "type": "string"
        +        },
        +        "flight_class": {
        +          "default": "tour",
        +          "description": "Cabin class: tour (economy), tourPlus (premium economy), business, or first",
        +          "enum": [
        +            "tour",
        +            "tourPlus",
        +            "business",
        +            "first"
        +          ],
        +          "type": "string"
        +        },
        +        "infants": {
        +          "default": 0,
        +          "description": "Number of infant passengers (0–9)",
        +          "maximum": 9,
        +          "minimum": 0,
        +          "type": "integer"
        +        },
        +        "language": {
        +          "default": "en",
        +          "description": "Language for the interactive results widget. Set 'he' when the conversation is in Hebrew; defaults to English.",
        +          "enum": [
        +            "en",
        +            "he"
        +          ],
        +          "type": "string"
        +        },
        +        "origin": {
        +          "description": "3-letter IATA city or airport code (e.g. 'TLV', 'LON', 'MAD')",
        +          "maxLength": 3,
        +          "minLength": 3,
        +          "type": "string"
        +        },
        +        "return_date": {
        +          "description": "Return date for round trips (YYYY-MM-DD). Omit for one-way.",
        +          "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
        +          "type": "string"
        +        },
        +        "seniors": {
        +          "default": 0,
        +          "description": "Number of senior passengers (0–9)",
        +          "maximum": 9,
        +          "minimum": 0,
        +          "type": "integer"
        +        }
        +      },
        +      "required": [
        +        "origin",
        +        "destination",
        +        "departure_date"
        +      ],
        +      "type": "object"
        +    },
        +    "total": {
        +      "description": "Total matches found, which may exceed `flights.length`",
        +      "type": "integer"
        +    }
        +  },
        +  "required": [
        +    "query",
        +    "flights",
        +    "total"
        +  ],
        +  "type": "object"
        +}
  2. 1 tool update
    • First observedsearch_flights

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    Add real-time flight search. Alice Flights is a hosted, remote MCP server that lets an AI assistant search flights — best, cheapest, and fastest options with live seat availability — directly in a conversation. Powered by Alice, Israel's flight-booking travel app.
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Search Google Flights for one-way, round-trip and multi-city fares, with offline airport lookup and nearby-airport resolution.
    6
    MIT
  • -
    license
    Not graded
    quality
    Not graded
    maintenance
    Enables searching and retrieving flight information using Duffel API, supporting one-way, round-trip, and multi-city queries with flexible search parameters.
    -
  • A
    license
    C
    quality
    F
    maintenance
    Enables searching and retrieving detailed flight information using the Duffel API, supporting various flight types and flexible search parameters for efficient travel planning.
    3
    222
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources