Skip to main content
Glama

Server Details

Search award flights and cash fares, optimize points, and predict fares inside ChatGPT and Claude.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsB

Average 3.8/5 across 6 of 6 tools scored. Lowest: 2.9/5.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: hidden city ticketing, fare prediction, deal browsing, points optimization, calendar search, and standard flight search. No overlap in functionality.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern (e.g., check_hidden_city, get_prediction, list_deals), using imperative verbs and descriptive nouns.

Tool Count5/5

Six tools is well-scoped for a travel research server. Each tool covers a distinct aspect without being too many or too few.

Completeness4/5

The tool set covers key travel research needs: search, calendar flexibility, deals, predictions, hidden city, and points optimization. Minor gaps like price alerts or booking are acceptable for an informational server.

Available Tools

6 tools
check_hidden_cityA
Read-only
Inspect

Check for hidden city ticketing opportunities where booking a flight through your destination is cheaper than booking directly. Includes important risk disclaimers.

ParametersJSON Schema
NameRequiredDescriptionDefault
originYesIATA airport code for departure (e.g. JFK)
destinationYesIATA airport code where you actually want to go (e.g. ORD)
departureDateYesDeparture date in YYYY-MM-DD format
Behavior3/5

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

Annotations already provide readOnlyHint=true and openWorldHint=true, so the baseline is low. The description adds 'Includes important risk disclaimers,' which hints at behavioral traits (e.g., the tool doesn't execute bookings but warns of risks), but does not elaborate on what those disclaimers entail or other side effects.

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 two sentences long, each adding value: the first states the purpose, the second highlights risk disclaimers. It is front-loaded and wastes no words.

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 has 3 well-documented parameters and no output schema, the description covers the core functionality. However, it lacks details about the output format or the nature of the risk disclaimers, leaving some gaps for the agent.

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 description coverage is 100%, so each parameter (origin, destination, departureDate) already has clear definitions. The description does not add extra meaning beyond these, so a baseline score of 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?

The description clearly states the tool's purpose: 'Check for hidden city ticketing opportunities' with a specific verb and resource. It distinguishes from sibling tools like search_flights and list_deals by focusing on the niche concept of hidden city ticketing, which is unique among the siblings.

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 specifies when to use this tool: to check for hidden city ticketing opportunities where booking a flight through your destination is cheaper. It implies a specific use case but does not explicitly mention when not to use it or name alternatives, though the sibling list provides context.

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

get_predictionA
Read-only
Inspect

Get a buy/wait/neutral recommendation for a flight fare based on historical patterns and time-based signals.

ParametersJSON Schema
NameRequiredDescriptionDefault
originYesIATA airport code for departure (e.g. JFK)
destinationYesIATA airport code for arrival (e.g. LAX)
currentPriceYesCurrent fare price in USD that you are considering
departureDateYesDeparture date in YYYY-MM-DD format
Behavior4/5

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

Annotations already declare readOnlyHint=true (safe read) and openWorldHint=true (dynamic). The description adds context about the underlying model (historical patterns and time-based signals), providing useful behavioral insight beyond annotations. However, it could mention limitations like prediction accuracy or price volatility.

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?

A single, front-loaded sentence that conveys the essential purpose and mechanism. No extraneous words; every part contributes value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With four required parameters and no output schema, the description adequately describes the input context but does not explain the return format (e.g., how the recommendation is structured). Some gaps remain for an agent to fully understand the tool's response.

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 parameters are already well-documented. The description does not add any additional semantic detail about parameters beyond what the schema provides, meeting the baseline expectation.

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 uses a specific verb ('Get') and resource ('recommendation for a flight fare'), clearly stating the output type ('buy/wait/neutral') and the basis ('historical patterns and time-based signals'). It distinguishes well from sibling tools that cover different flight-related actions.

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?

The description implies usage when an agent has a fare to evaluate, but it does not explicitly state when to use this tool versus alternatives or any prerequisites (e.g., needing currentPrice). No exclusionary guidance is provided.

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

list_dealsC
Read-only
Inspect

Browse current award travel deals and flight promotions.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of deals to return (default 12)
categoryNoOptional deal type filter (e.g. 'flight', 'hotel', 'card')
Behavior2/5

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

Annotations provide readOnlyHint and openWorldHint, which the description does not contradict. However, the description adds no behavioral details beyond what annotations already convey, such as caching, recency, or result variability. For a read-only tool, more context would help.

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?

Description is one short sentence with no wasted words. It is front-loaded with the key action and resource. Slightly more structure might improve scannability, but it is sufficiently concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple tool (few parameters, no output schema), the description is minimally complete. It lacks usage guidelines and behavioral context, but for a straightforward browse tool, it provides a basic understanding. The absence of output schema details is acceptable due to tool simplicity.

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 descriptions for both 'limit' and 'category'. The description adds no extra meaning about parameters; it only gives a general tool purpose. Baseline 3 is appropriate since schema already documents parameters adequately.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the tool lists award travel deals and flight promotions. The verb 'browse' and resource 'deals' are specific, and the tool is distinct from siblings like 'search_flights' and 'check_hidden_city'. However, it could be more explicit about whether these are curated deals or live search results.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives. The description does not mention prerequisites, when not to use, or how it differs from sibling tools. The agent must infer from context.

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

optimize_pointsA
Read-only
Inspect

Compare points redemption options for a flight and rank them by cents-per-point (CPP) value. Helps decide whether to pay cash or use loyalty points.

ParametersJSON Schema
NameRequiredDescriptionDefault
cashPriceYesCash price of the ticket in USD
pointsOptionsYesArray of available points redemption options to compare
Behavior4/5

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

Annotations indicate readOnlyHint and openWorldHint. Description adds that it ranks by CPP, providing behavioral context beyond annotations. 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?

Two concise sentences, front-loaded with the purpose. No unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema, and description only hints at the output format (CPP ranking). Lacks details about what the ranked list looks like or how to interpret results.

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 parameters are well-documented. Description adds context but does not add new semantic details beyond what's 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 clearly states the verb 'compare/rank' and the resource 'points redemption options', differentiating it from sibling tools like search_flights. It also explains the outcome: deciding cash vs points.

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 implies use when you have multiple points options for a flight, but does not explicitly state when not to use it or mention alternatives. However, context is clear.

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

search_calendarA
Read-only
Inspect

Find the cheapest travel dates around a target date. Shows a calendar view of minimum prices for flexible date travelers.

ParametersJSON Schema
NameRequiredDescriptionDefault
originYesIATA airport code for departure (e.g. JFK)
daysAfterNoNumber of days after the target date to include (default: 7)
daysBeforeNoNumber of days before the target date to include (default: 7)
targetDateYesCenter date for the calendar search (YYYY-MM-DD)
destinationYesIATA airport code for arrival (e.g. LAX)
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint, so the description adds context by specifying the output is a calendar view of minimum prices. No contradictions and useful behavior added.

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?

Two concise sentences, front-loaded with purpose. No extraneous words; each sentence adds value.

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 simplicity of the tool, the description covers the purpose and output sufficiently. No output schema needed as the description explains the calendar view. Sibling tools are distinct.

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 description coverage is 100%, so baseline is 3. The description does not add extra parameter information beyond what the schema already provides.

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 uses a specific verb 'Find' and clearly identifies the resource 'cheapest travel dates' and the result 'calendar view'. It distinguishes from siblings like search_flights (specific flights) and list_deals (general deals).

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?

The description implies usage for flexible date travelers seeking cheapest dates around a target date, but does not explicitly state when not to use it or compare with sibling tools like search_flights or check_hidden_city.

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

search_flightsA
Read-only
Inspect

Search for flight deals between two airports on a given date. Returns cash fares and/or award availability from multiple sources (Duffel, SerpApi, Seats.aero).

ParametersJSON Schema
NameRequiredDescriptionDefault
dateYesDeparture date in YYYY-MM-DD format
originYesIATA airport code for departure (e.g. JFK)
cabinClassNoCabin class (default: economy)
returnDateNoReturn date in YYYY-MM-DD format (omit for one-way)
searchTypeNoSearch for cash fares, award availability, or both (default: both)
destinationYesIATA airport code for arrival (e.g. LAX)
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true. The description adds that it returns results from multiple sources, which is useful but not critical. It does not disclose additional behavioral traits (e.g., rate limits, data freshness) beyond what annotations imply.

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 two sentences with zero redundancy. It front-loads the main action and provides essential detail without wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of flight search (6 parameters, 2 enums, no output schema), the description lacks details about return format, result structure, or limitations. It is minimally adequate but leaves the agent without guidance on interpreting results or handling edge cases.

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 all parameters are already documented in the schema. The description does not add new meaning or usage context beyond restating 'between two airports on a given date', which is already covered by required parameters origin, destination, and date.

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 defines a specific action (search for flight deals) with clear scope (between two airports on a given date) and return types (cash fares and/or award availability). It distinguishes from sibling tools like check_hidden_city or optimize_points by focusing on general flight search.

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?

The description implies usage for flight searching but does not provide explicit guidance on when to use this tool versus alternatives like check_hidden_city or search_calendar. No when-not-to-use or context exclusions are given.

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

Discussions

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

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources