flights_with_airline
Retrieve real-time flight data for a specific airline, including the number of active flights, using the Aviationstack MCP Server API.
Instructions
MCP tool to get flights with a specific airline.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
airline_name | Yes | ||
number_of_flights | Yes |
Input Schema (JSON Schema)
{
"properties": {
"airline_name": {
"title": "Airline Name",
"type": "string"
},
"number_of_flights": {
"title": "Number Of Flights",
"type": "integer"
}
},
"required": [
"airline_name",
"number_of_flights"
],
"title": "flights_with_airlineArguments",
"type": "object"
}