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.
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 4.3/5 across 4 of 4 tools scored.
The two distinct functionalities (search airport and get delay status) are clearly separated, and the aliases are explicitly documented as such, so an agent can easily disambiguate.
The naming is inconsistent: two tools use dot-notation (airport.get_delay_status, airport.search_supported) while two use underscore (get_airport_delay_status, search_supported_airports), mixing conventions.
With only 2 unique tools (despite 4 listed), the server is narrowly scoped. This is borderline acceptable for a specific domain like airport delays, but feels thin.
The server fully covers its stated purpose: search for airports to resolve ambiguous references and get live delay status. No obvious gaps for airport-level delay queries.
Available Tools
4 toolsairport.get_delay_statusGet airport delay statusARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | Output format. Use plain for SMS-style replies; markdown includes formatted links. Defaults to plain. | |
| airport | Yes | Airport IATA code, city, or airport name. Examples: JFK, LHR, Copenhagen, Chicago O'Hare. |
Output Schema
| Name | Required | Description |
|---|---|---|
| scope | Yes | Current data scope for the tool result. |
| format | Yes | Returned text format. |
| airport | Yes | Resolved airport IATA code. |
| detailsUrl | Yes | Pro Flight Search airport details URL for citation or follow-up. |
| disclaimer | Yes | Operational-data disclaimer for the airport status. |
| statusText | Yes | Airport status text returned in the MCP content block. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the description adds little beyond accepting multiple input forms. No contradictions; the alias note adds context.
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 covering purpose and alias. Front-loaded with key information, no wasted words.
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?
Output schema exists, so return values are covered. The description fully specifies input scope and behavior for a simple read-only tool.
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 description coverage is 100%, so the schema already documents both parameters. The description only restates that airport accepts IATA, city, or name, which is already in the schema.
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 retrieves live airport delay, cancellation, weather, flight-rules, and forecast for one airport. It distinguishes itself from sibling search tools by specifying it gets status for a single airport.
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 explicitly says to get delay status for one airport, but does not mention when not to use it or provide alternatives. While the alias note is helpful, it lacks exclusionary guidance.
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 airportsARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Airport code, city, or airport name to search. Examples: London, Paris, Chicago, ORD. |
Output Schema
| Name | Required | Description |
|---|---|---|
| query | Yes | Search query used to find tracked airports. |
| matches | Yes | Tracked airport matches that can be used with get_airport_delay_status or airport.get_delay_status. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, so safety profile is clear. Description adds behavioral context: it searches tracked airports and returns IATA codes, which aligns with annotations. No contradiction.
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, front-loaded, no redundant information. Every sentence contributes to understanding the tool's purpose and usage.
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?
Given the tool's simplicity and the presence of annotations and output schema, the description covers purpose, input, expected result (matching IATA codes), and relationship to sibling tool. No gaps.
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 a single parameter 'query' described. Description adds value by providing concrete examples (London, Paris, Chicago, ORD) and clarifying accepted input types: airport code, city, or airport name.
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 the verb 'Search', the resource 'supported airports', and the context 'when a user's airport reference is ambiguous'. It distinguishes from sibling tools by noting it returns IATA codes for use with airport.get_delay_status, and mentions it's an alias of search_supported_airports.
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?
Description specifies when to use: when an airport reference is ambiguous, and what to do with results: use with airport.get_delay_status. It does not explicitly state when not to use or compare with non-sibling alternatives, but provides clear guidance.
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 statusARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | Output format. Use plain for SMS-style replies; markdown includes formatted links. Defaults to plain. | |
| airport | Yes | Airport IATA code, city, or airport name. Examples: JFK, LHR, Copenhagen, Chicago O'Hare. |
Output Schema
| Name | Required | Description |
|---|---|---|
| scope | Yes | Current data scope for the tool result. |
| format | Yes | Returned text format. |
| airport | Yes | Resolved airport IATA code. |
| detailsUrl | Yes | Pro Flight Search airport details URL for citation or follow-up. |
| disclaimer | Yes | Operational-data disclaimer for the airport status. |
| statusText | Yes | Airport status text returned in the MCP content block. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and idempotentHint=true, so the description adds value by detailing the exact data returned (delay, cancellations, weather, forecast) and the 24-hour forecast context, which goes beyond 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 three sentences, front-loading the primary action (Get live... context), then input format, then usage guidance and scope limit. No filler or redundancy.
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?
Given the output schema exits and annotations cover safety, the description sufficiently covers input flexibility, usage examples, and data categories. No missing critical details for this query tool.
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 description coverage is 100%, already describing both parameters well. The description repeats the airport flexibility but adds no new meaning beyond the schema, so baseline 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 retrieves live airport-level delay, cancellation, weather, and forecast context for a single airport, distinguishing it from siblings like search_supported_airports. It explicitly says 'Airport-level only, not flight-number tracking', which differentiates from any flight-specific tool.
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 explicit when-to-use examples ('are there delays at JFK', 'how is Copenhagen airport') and what-not-to-use ('not flight-number tracking'), guiding the agent to select this tool for airport-level queries and avoid it for individual flight tracking.
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 airportsARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Airport code, city, or airport name to search. Examples: London, Paris, Chicago, ORD. |
Output Schema
| Name | Required | Description |
|---|---|---|
| query | Yes | Search query used to find tracked airports. |
| matches | Yes | Tracked airport matches that can be used with get_airport_delay_status or airport.get_delay_status. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only and idempotent. Description adds that it returns matching IATA codes and the intended flow, consistent 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?
Two sentences with no wasted words. Front-loaded with verb and resource, then usage guidance. Highly efficient.
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?
Complete for a search tool with output schema. Explains trigger and downstream tool. Could mention ordering or limits but not necessary given output schema.
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 covers 100% of the parameter with examples. Description adds context but does not significantly enhance beyond schema, so baseline 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?
Description explicitly states the tool searches tracked airports when ambiguous and returns IATA codes for get_airport_delay_status. It distinguishes from siblings by specifying when to call it.
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?
Clear usage context: call when user's airport reference is ambiguous, before airport status for city names. Does not explicitly state when not to use but provides solid guidance.
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!
Related MCP Servers
AlicenseAqualityBmaintenanceProvides AI assistants with access to real-time flight data, airport schedules, delays, and aviation reference databases through natural language queries.1217MIT- Flicense-qualityDmaintenanceProvides real-time access to official aviation weather data including METARs, TAFs, and PIREPs directly from aviationweather.gov. It enables users to query airport observations, forecasts, and pilot reports through natural language within Claude.
- Alicense-qualityCmaintenanceProvides aviation weather data (METAR, TAF, station search) with a unique assess_conditions tool that returns flight category, confidence, and an escalation gate to indicate when human review is needed.56MIT
- Alicense-qualityDmaintenanceProvides access to aviation weather data from aviationweather.gov, enabling LLMs to fetch and analyze METAR, TAF, PIREPs, AIRMETs, and other aviation weather information.216MIT