Skip to main content
Glama

Flightaware Flight Status

flightaware_flight_status
Read-onlyIdempotent

Get real-time flight status for a flight number or tail number: origin/destination airports, scheduled/estimated/actual departure & arrival times, current status, and aircraft type. Returns a flights[] array (one flight ident can map to several dated flights). Example: flightaware_flight_status({ ident: "UAL123", _apiKey: "your-key" })

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endNoOptional ISO8601 date/time upper bound.
identYesFlight identifier — airline flight number (ICAO preferred, e.g. "UAL123" for United 123) or aircraft registration / tail number (e.g. "N12345").
startNoOptional ISO8601 date/time lower bound, e.g. "2026-07-01" or "2026-07-01T00:00:00Z".
_apiKeyYesYour FlightAware AeroAPI key (https://www.flightaware.com/aeroapi/signup/)
ident_typeNoOptional. How to interpret `ident`: "designator" (flight number), "registration" (tail number), or "fa_flight_id". Omit to let AeroAPI infer.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A3.6/5.0
Behavior4/5

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

Annotations already cover readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is clear. The description goes beyond this by revealing the response shape (flights[] array) and that one flight ident can map to several dated flights, which is a non-trivial behavioral nuance. 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?

The description is two sentences plus one inline example, front-loading the core purpose and adding only relevant detail about the array response. There is no filler or redundancy; every word serves a purpose.

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's moderate complexity (5 params, no output schema) and with all parameters fully described in the schema, the description covers the main purpose, the response array, and usage example. It does not address pagination or error behavior, but for a read-only flight status lookup the missing pieces are minor.

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 the baseline is 3. The description's example call ({ ident, _apiKey }) illustrates basic usage but adds no semantics beyond what the schema already states (e.g., ident type, start/end bounds, ident_type inference). The example is mildly helpful but not compensating for any gap.

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?

The description clearly identifies the tool's verb and resource ('Get real-time flight status') and enumerates the data fields it returns (airports, times, status, aircraft type). It does not explicitly differentiate from sibling tools like flightaware_flight_position or flightaware_flight_track, but the scope is specific enough that it is unlikely to be confused.

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 when-to-use alternative guidance is provided; the description simply says what the tool does. It does not mention sibling tools or conditions for choosing this tool over flightaware_flight_position or flightaware_flight_track, leaving the agent without a decision matrix.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.