Skip to main content
Glama

Server Details

Find curated cheap flight and travel deals from Australia.

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 DescriptionsA

Average 3.8/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a distinct purpose: get_deal retrieves details for a specific deal, list_top_deals_from filters by departure airport, and search_deals allows flexible querying by destination or price. There is no ambiguity or overlap.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in snake_case (get_deal, list_top_deals_from, search_deals). The naming is predictable and clear, with no mixing of conventions.

Tool Count5/5

With 3 tools, the server is tightly scoped to the domain of curated flight deals from Australia. This number is sufficient for core user interactions—listing, searching, and getting details—without being excessive.

Completeness5/5

The tool set covers the essential operations for discovering and examining flight deals: listing from an airport, searching by criteria, and retrieving full details. There are no obvious gaps for the intended user-facing functionality.

Available Tools

3 tools
get_dealGet Deal DetailsA
Read-only
Inspect

Get full details for a specific flight deal including routes and airlines.

ParametersJSON Schema
NameRequiredDescriptionDefault
deal_idYesThe deal ID
Behavior3/5

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

Annotations already declare 'readOnlyHint: true', so the description adds no extra behavioral insights. It confirms the read operation but does not disclose potential rate limits, authentication requirements, or other side effects. This is adequate given the annotations.

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 a single, well-structured sentence with no unnecessary words. It is front-loaded with the main action and immediately specifies the output details, making it efficient for an agent to parse.

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?

The tool has one parameter and no output schema. The description provides sufficient context by stating it returns 'full details including routes and airlines', which covers the main content. However, it could explicitly state that it returns a complete deal object, but the wording 'full details' implies comprehensiveness.

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?

Input schema has 100% coverage with a clear description of 'deal_id'. The description mentions the output contains 'routes and airlines' but does not add any parameter-specific meaning beyond the schema. Baseline score of 3 applies.

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 ('full details for a specific flight deal'), and explicitly mentions included fields (routes and airlines). This clearly distinguishes it from sibling tools like 'search_deals' or 'list_top_deals_from', which serve different purposes.

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 does not explicitly state when to use this tool versus its siblings. While the context signals imply that this tool is for retrieving details by ID, the lack of explicit usage guidance or alternatives lowers the score.

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

list_top_deals_fromList Top Deals From AirportA
Read-only
Inspect

List the cheapest currently active flight deals from a specific Australian airport. Great for answering 'what's cheap from Melbourne right now?'

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of results (1-20, default 5)
originYesAustralian airport code (e.g. 'MEL', 'SYD', 'BNE', 'PER', 'ADL')
Behavior3/5

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

Annotations already declare readOnlyHint=true. Description adds 'active' deals but doesn't elaborate on criteria, data freshness, or limitations. Sufficient but not enhanced beyond annotations.

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 sentences with no wasted words; front-loaded with the core action and a practical example.

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 simple tool with 2 params and no output schema, the description covers the main purpose and a use case. Could mention what results look like, but still reasonably complete.

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 already provides full description for both parameters (100% coverage). Description adds minimal extra meaning beyond reinforcing the usage scenario.

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 it lists cheapest active flight deals from a specific Australian airport and provides a concrete example. However, it does not explicitly differentiate from sibling tools like search_deals or get_deal.

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 gives a usage scenario ('what's cheap from Melbourne?') but lacks explicit when-not-to-use guidance or mention of alternatives.

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

search_dealsSearch Flight DealsA
Read-only
Inspect

Search for currently active curated flight deals from Australia. Returns deals matching destination and/or price criteria. Deals are curated exceptional fares, not live inventory search.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of results (1-20, default 5)
max_priceNoMaximum price in AUD
destinationNoAirport code, city name, or country name (e.g. 'DPS', 'Bali', 'Japan')
Behavior4/5

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

Annotations already mark the tool as read-only. The description adds valuable context that deals are 'curated exceptional fares' and 'not live inventory search,' which helps set expectations. No contradictions with annotations.

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 the main action, covering criteria and nature of deals. No redundant information; every sentence adds value.

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 simple search tool with three optional parameters and no output schema, the description adequately covers what the tool does, its scope (Australia), and distinguishing feature (curated deals). It could mention return format implicitly, but it's sufficient for agent use.

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 clear descriptions for each parameter (limit range, price in AUD, destination examples). The description adds minimal extra meaning beyond 'destination and/or price criteria,' which aligns with schema. 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 searches for curated flight deals from Australia, specifying the resource and criteria (destination/price). It distinguishes from live inventory search, providing a specific verb and context. Although siblings are not explicitly differentiated, the purpose is well-defined.

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 indicates when to use the tool (looking for curated deals from Australia) but lacks explicit guidance on when not to use it or alternatives. Sibling tools exist but are not mentioned in the description, leaving the agent to infer based on names.

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