Skip to main content
Glama
Cyreslab-AI

flightradar24-mcp-server

get_airline_data

Read-only

Retrieve an airline's name and IATA code from its ICAO identifier. Enter a 3-letter ICAO code to receive the corresponding airline's IATA code and name.

Instructions

Get an airline's name and IATA code by its ICAO code.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
icaoYesICAO (3-letter) airline code (e.g., 'BAW' for British Airways). IATA-only lookup is not supported by the FR24 API.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
codesYes
updatedYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already provide readOnlyHint and openWorldHint, and the description does not repeat them. It adds no extra behavioral details like not-found behavior or rate limits, but it doesn't contradict the annotations either.

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?

One sentence, front-loaded with the action and result, and zero filler. Every word earns its place.

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 one-parameter read-only lookup with a rich input schema, output schema, and annotations, the description covers the essential behavior. There are no critical gaps that would prevent correct invocation.

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?

Input schema coverage is 100%, including an example and an explicit note that IATA-only lookup is unsupported. The tool description only says 'by its ICAO code,' adding no meaning beyond the schema.

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?

Uses a specific verb ('Get') and resource ('airline's name and IATA code') with a clear lookup key (ICAO code). This cleanly differentiates it from sibling tools that concern flights, airports, or searches.

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 implies the usage context: use when you have an ICAO code and need the airline name/IATA code. It doesn't name alternatives, but none of the sibling tools overlap directly, so the guidance is sufficient.

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