get_flight_status
Retrieve real-time flight status using flight codes (IATA or ICAO) to track current location, delays, and other essential details via the FlightRadar MCP Server.
Instructions
Get the current status of a flight by flight number
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flight_iata | No | IATA flight code (e.g., 'BA123') | |
flight_icao | No | ICAO flight code (e.g., 'BAW123') |
Input Schema (JSON Schema)
{
"oneOf": [
{
"required": [
"flight_iata"
]
},
{
"required": [
"flight_icao"
]
}
],
"properties": {
"flight_iata": {
"description": "IATA flight code (e.g., 'BA123')",
"type": "string"
},
"flight_icao": {
"description": "ICAO flight code (e.g., 'BAW123')",
"type": "string"
}
},
"type": "object"
}