Flights
Where aircraft are, live from ADS-B
Calling it
Everything here is public and free. No token, no account, no payment.
Methods
GET /api/v1/flights/airportReport what is happening at an airport right now: what is on the ground, what is on approach and what is climbing out. Live positions, not the timetable, so it says nothing about scheduled or delayed departures
| Argument | Type | Description |
|---|---|---|
code * | string | An airport code or name, e.g. 'LHR', 'EGLL' or 'Heathrow' |
curl \ "https://mu-mcp.yvangodard.me/api/v1/flights/airport?code=code"
GET /api/v1/flights/overheadList the aircraft flying near a location right now, nearest first, with altitude, speed, heading and distance. Live positions broadcast by the aircraft themselves, not a schedule
| Argument | Type | Description |
|---|---|---|
near | string | Where to look: a place name, or an airport name or code, e.g. 'Camden, London' or 'LHR' |
lat | number | Optional latitude, if the location is already known |
lon | number | Optional longitude, if the location is already known |
radius | number | Optional radius in nautical miles (default 30, maximum 250) |
curl \ "https://mu-mcp.yvangodard.me/api/v1/flights/overhead"
GET /api/v1/flights/trackFind where an aircraft is right now by flight number ('BA117'), radio callsign ('BAW117') or registration ('G-ZBKL'). Only sees aeroplanes that are airborne and in range of a receiver — not finding one does not mean the flight was cancelled
| Argument | Type | Description |
|---|---|---|
flight * | string | A flight number ('BA117'), a radio callsign ('BAW117'), or an aircraft registration ('G-ZBKL') |
curl \ "https://mu-mcp.yvangodard.me/api/v1/flights/track?flight=flight"
The same methods are tools over MCP, and every service on this instance is in one reference. Same method, same answer, same price.


