flightaware_airport_flights
Pack: flightaware · Endpoint: https://gateway.pipeworx.io/flightaware/mcp
List flights at an airport — arrivals and/or departures with scheduled & actual times.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Airport code — ICAO (e.g. “KSFO”, “EGLL”) or IATA (e.g. “SFO”, “LHR”). |
type | string | no | Which flights to return: “arrivals”, “departures”, or “all” (default). “all” hits the combined |
start | string | no | Optional ISO8601 date/time lower bound. |
end | string | no | Optional ISO8601 date/time upper bound. |
_apiKey | string | yes | Your FlightAware AeroAPI key |
Example call
Arguments
{
"id": "KSFO",
"_apiKey": "your-flightaware-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/flightaware/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"flightaware_airport_flights","arguments":{"id":"KSFO","_apiKey":"your-flightaware-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('flightaware_airport_flights', {
"id": "KSFO",
"_apiKey": "your-flightaware-api-key"
});
More examples
{
"id": "EGLL",
"type": "departures",
"start": "2026-07-01T00:00:00Z",
"_apiKey": "your-flightaware-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"flightaware": {
"url": "https://gateway.pipeworx.io/flightaware/mcp"
}
}
}
See Getting Started for client-specific install steps.