Skip to main content
Glama
Cyreslab-AI

flightradar24-mcp-server

get_airport_data

Read-only

Retrieve airport information by IATA or ICAO code, with options for full details like coordinates, elevation, city, and timezone or a light response with name and codes.

Instructions

Get information about an airport by its exact IATA or ICAO code.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeYesIATA (3-letter) or ICAO (4-letter) airport code
detail_levelNoAmount of detail to return. "full" (default) includes coordinates, elevation, city, and timezone; "light" returns only name and codes and costs fewer FR24 API credits.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
codesYes
updatedYes
locationNo
timezoneNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

A3.7/5.0
Behavior3/5

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

The annotations already declare readOnlyHint=true and openWorldHint=true, and the description's 'Get information' is consistent with that. The description adds no behavioral context beyond the annotations, so it meets the baseline but provides no extra transparency about limitations or edge cases.

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, front-loaded sentence with no filler. It communicates the tool's purpose and lookup key efficiently, earning every word.

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?

For a simple read-only lookup tool, the description plus the detailed input schema and output schema provide enough information for an agent to call it correctly. No critical context appears 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 description coverage is 100%, and both parameters are already documented with meaningful descriptions, including the enum for detail_level. The description adds only the word 'exact,' which slightly reinforces the code format, but it does not materially add value beyond the 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?

The description names a specific verb ('Get') and resource ('information about an airport') and adds a precise lookup criterion ('exact IATA or ICAO code'), which makes the core purpose clear. It distinguishes the tool from sibling flight/airline tools by resource type, though it does not name a sibling or explicitly contrast itself.

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 implies a clear use case: call this when you need airport details and have a specific IATA or ICAO code. However, it provides no explicit guidance about alternatives or when not to use this tool, leaving some inference to the agent.

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