I Know The Pilot
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.
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.
Tool Definition Quality
Average 3.8/5 across 3 of 3 tools scored.
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.
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.
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.
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 toolsget_dealGet Deal DetailsARead-onlyInspect
Get full details for a specific flight deal including routes and airlines.
| Name | Required | Description | Default |
|---|---|---|---|
| deal_id | Yes | The deal ID |
Tool Definition Quality
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.
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.
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.
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.
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.
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 AirportARead-onlyInspect
List the cheapest currently active flight deals from a specific Australian airport. Great for answering 'what's cheap from Melbourne right now?'
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results (1-20, default 5) | |
| origin | Yes | Australian airport code (e.g. 'MEL', 'SYD', 'BNE', 'PER', 'ADL') |
Tool Definition Quality
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.
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.
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.
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.
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.
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 DealsARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results (1-20, default 5) | |
| max_price | No | Maximum price in AUD | |
| destination | No | Airport code, city name, or country name (e.g. 'DPS', 'Bali', 'Japan') |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!