Skip to main content
Glama

Pro Flight Search Airport Delays

Server Details

Read-only airport delay, weather, and 24h forecast tools for AI assistants. Airport-level only.

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 4.1/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

The two core functions (search airports and get delay status) are clearly distinct. Each function has an alias, but descriptions explicitly state they are aliases, so agents can confidently choose either without ambiguity.

Naming Consistency2/5

Naming conventions are mixed: dot-notation (airport.get_delay_status) vs underscore (get_airport_delay_status), and one pair uses 'search_supported' while the other uses 'search_supported_airports'. No consistent pattern across the set.

Tool Count4/5

Four tools for a focused domain (airport delays). The count is appropriate, though it includes two redundant alias tools, which slightly inflates the number without adding functionality.

Completeness4/5

The server covers the core functionality for airport delay information: searching for airports and retrieving live delay status. Minor gaps like historical data or flight-specific delays are outside the stated scope.

Available Tools

4 tools
airport.get_delay_statusGet airport delay statusA
Read-onlyIdempotent
Inspect

Get live airport-level delay, cancellation, weather flight-rules, and 24-hour forecast context for one airport. Accepts IATA code, city, or airport name. Alias of get_airport_delay_status for clients that prefer dot-notation tool names.

ParametersJSON Schema
NameRequiredDescriptionDefault
formatNoOutput format. Use plain for SMS-style replies; markdown includes formatted links. Defaults to plain.
airportYesAirport IATA code, city, or airport name. Examples: JFK, LHR, Copenhagen, Chicago O'Hare.

Output Schema

ParametersJSON Schema
NameRequiredDescription
scopeYesCurrent data scope for the tool result.
formatYesReturned text format.
airportYesResolved airport IATA code.
detailsUrlYesPro Flight Search airport details URL for citation or follow-up.
disclaimerYesOperational-data disclaimer for the airport status.
statusTextYesAirport status text returned in the MCP content block.
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. Description adds context about input flexibility (IATA, city, name) and the alias relationship, which is useful but does not contradict annotations. No additional behavioral details like error handling or ambiguous input handling are needed given 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: the first delivers the core purpose, the second adds input flexibility and alias info. No unnecessary words; front-loaded and efficient.

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?

With an output schema and rich annotations, the description adequately covers input flexibility and alias. It does not need to explain return values. Minor gaps like error handling are acceptable for a read-only tool with good structured metadata.

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 tool's free-text description reiterates that it accepts IATA code, city, or airport name, which adds little beyond the schema's parameter descriptions. The schema already provides sufficient meaning for both parameters.

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?

Description clearly states the verb 'Get' and the resource: 'airport-level delay, cancellation, weather flight-rules, and 24-hour forecast context for one airport'. It also lists accepted input types (IATA code, city, name) and distinguishes from siblings by specifying 'for one airport' and noting the alias relationship.

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?

Description implies usage for retrieving delay status for a single airport with flexible input. However, it does not explicitly state when to use this tool versus its alias (get_airport_delay_status) or sibling search tools, nor does it provide exclusions or prerequisites.

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

airport.search_supportedSearch supported airportsA
Read-onlyIdempotent
Inspect

Search Pro Flight Search tracked airports when a user's airport reference is ambiguous. Returns matching IATA codes to use with airport.get_delay_status. Alias of search_supported_airports for clients that prefer dot-notation tool names.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesAirport code, city, or airport name to search. Examples: London, Paris, Chicago, ORD.

Output Schema

ParametersJSON Schema
NameRequiredDescription
queryYesSearch query used to find tracked airports.
matchesYesTracked airport matches that can be used with get_airport_delay_status or airport.get_delay_status.
Behavior4/5

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

Annotations already provide readOnlyHint, idempotentHint, and destructiveHint. The description adds context about searching 'tracked airports' and returning IATA codes, which clarifies the scope and output 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?

The description is concise, consisting of two sentences that effectively communicate the tool's purpose, usage context, and relationship to an alias. No unnecessary words.

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 simplicity (single parameter, good annotations, output schema exists), the description is complete. It covers when to use, what it returns, and its relation to sibling tools, leaving no critical gaps.

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?

The input schema provides a detailed description of the 'query' parameter with examples. The description mentions 'airport reference' but does not significantly add new information beyond what the schema already covers. Baseline 3 due to high schema description coverage.

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 that the tool searches tracked airports when a reference is ambiguous and returns IATA codes. It distinguishes itself from sibling tools like airport.get_delay_status and the alias search_supported_airports, making the purpose unambiguous.

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 the tool ('when a user's airport reference is ambiguous') and mentions its output can be used with airport.get_delay_status, implying a chaining use case. However, it does not explicitly state when not to use it or compare with other search alternatives.

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

get_airport_delay_statusGet airport delay statusA
Read-onlyIdempotent
Inspect

Get live airport-level delay, cancellation, weather flight-rules, and 24-hour forecast context for one airport. Accepts IATA code, city, or airport name. Call this for questions like 'are there delays at JFK' or 'how is Copenhagen airport'. Airport-level only, not flight-number tracking.

ParametersJSON Schema
NameRequiredDescriptionDefault
formatNoOutput format. Use plain for SMS-style replies; markdown includes formatted links. Defaults to plain.
airportYesAirport IATA code, city, or airport name. Examples: JFK, LHR, Copenhagen, Chicago O'Hare.

Output Schema

ParametersJSON Schema
NameRequiredDescription
scopeYesCurrent data scope for the tool result.
formatYesReturned text format.
airportYesResolved airport IATA code.
detailsUrlYesPro Flight Search airport details URL for citation or follow-up.
disclaimerYesOperational-data disclaimer for the airport status.
statusTextYesAirport status text returned in the MCP content block.
Behavior4/5

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

Annotations indicate read-only; description adds live data, 24-hour forecast, and input flexibility 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 efficient sentences front-load key action and scope; zero unnecessary 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?

Covers input flexibility, data scope, and example queries; output schema covers result format, so description is sufficiently 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 has 100% parameter descriptions; description adds minor extra context (e.g., format usage note) but does not significantly add beyond schema.

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?

Clear verb+resource: get live airport delay/weather data. Distinguishes from flight-number tracking but not from sibling 'airport.get_delay_status' which appears identical.

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?

Explicit calls to use for specific questions (e.g., 'are there delays at JFK'), but no when-not-to-use or alternatives for sibling tools.

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

search_supported_airportsSearch supported airportsA
Read-onlyIdempotent
Inspect

Search Pro Flight Search tracked airports when a user's airport reference is ambiguous. Returns matching IATA codes to use with get_airport_delay_status. Call this before airport status when the user says a city name like London or Chicago.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesAirport code, city, or airport name to search. Examples: London, Paris, Chicago, ORD.

Output Schema

ParametersJSON Schema
NameRequiredDescription
queryYesSearch query used to find tracked airports.
matchesYesTracked airport matches that can be used with get_airport_delay_status or airport.get_delay_status.
Behavior3/5

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

Annotations already provide safety profile (readOnly, idempotent, non-destructive). Description adds that it returns IATA codes but doesn't disclose additional behavior beyond what annotations and schema cover.

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 efficient sentences: first states purpose and trigger, second states output and next step. No wasted words.

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?

Single parameter with full schema coverage, output schema exists. Description covers trigger, output, and usage with sibling tool. Nothing missing.

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 covers 100% of parameter 'query' with description and examples. Description only recontextualizes the trigger, not adding new parameter meaning. Baseline 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?

Clearly states it searches airports when user's reference is ambiguous, returns IATA codes, and directs to use with get_airport_delay_status. Distinguishes from siblings by being a preliminary lookup.

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

Usage Guidelines5/5

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

Explicitly says when to use: when airport reference is ambiguous and before calling get_airport_delay_status. Provides concrete examples (London, Chicago).

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