Flightaware MCP Server

Live flight tracking and aviation data via FlightAware AeroAPI (flights, airports, alerts).

Local serverstdio

What is the Flightaware MCP server?

If you already use Flightaware, the flightaware mcp server is the piece that lets your assistant work with it directly. Live flight tracking and aviation data via FlightAware AeroAPI (flights, airports, alerts).

What the server does

MCP server for FlightAware AeroAPI (v4) — live flight tracking and aviation data for Claude. Track flights, read airport boards, look up operators and aircraft, fetch scheduled flights, and manage flight alerts, all over stdio.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Area — Tools
  • Flights — fa_get_flights, fa_search_flights, fa_search_flights_advanced, fa_search_flight_positions, fa_count_flights, fa_get_flight_track
  • Airports — fa_get_airport, fa_get_airport_flights, fa_get_airport_flight_counts, fa_get_airport_routes, fa_list_airports, fa_get_nearby_airports
  • Alerts — fa_list_alerts, fa_get_alert, fa_create_alert, fa_update_alert, fa_delete_alert, fa_get_alerts_endpoint, fa_set_alerts_endpoint

Installation

npm on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Credentials and setup notes

Configuration is passed through the environment: AEROAPI_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Where it fits

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Flightaware's toolset — Area, Flights, Airports and 1 more — is a fair guide to whether it matches your workflow. It is maintained by chrischall; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
AreaTools
Flightsfa_get_flights, fa_search_flights, fa_search_flights_advanced, fa_search_flight_positions, fa_count_flights, fa_get_flight_track, fa_get_flight_position, fa_get_flight_route, fa_get_flight_map, fa_get_flight_history, fa_
Airportsfa_get_airport, fa_get_airport_flights, fa_get_airport_flight_counts, fa_get_airport_routes, fa_list_airports, fa_get_nearby_airports, fa_get_airport_delays, fa_get_airport_weather, fa_resolve_airport
Alertsfa_list_alerts, fa_get_alert, fa_create_alert, fa_update_alert, fa_delete_alert, fa_get_alerts_endpoint, fa_set_alerts_endpoint

How to install the Flightaware MCP server

{
  "mcpServers": {
    "flightaware": {
      "command": "npx",
      "args": ["-y", "@chrischall/flightaware-mcp"],
      "env": { "AEROAPI_API_KEY": "your-aeroapi-key-here" }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
AEROAPI_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Flightaware to Area.
  • Use Flightaware to Flights.
  • Use Flightaware to Airports.

Frequently asked questions

It connects Flightaware to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (Area, Flights, Airports, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Flightaware directly.