Fr24Api Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Fr24Api Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
This Model Context Protocol (MCP) server provides access to the Flightradar24 API for real-time and historical flight data. This server enables AI assistants like Claude to access comprehensive aviation data including live flight positions, aircraft information, airport details, and flight histories.
npm install -g @flightradar24/fr24api-mcpAdd this configuration to your claude_desktop_config.json file:
{
"mcpServers": {
"fr24api": {
"command": "npx",
"args": ["@flightradar24/fr24api-mcp@latest"],
"env": {
"FR24_API_KEY": "your_api_key_here"
}
}
}
}
Important Notes:
your_api_key_here with your actual Flightradar24 API key"command": "node", "args": ["/path/to/build/index.js"]For other MCP clients, run the server directly:
FR24_API_KEY=your_api_key_here npx @flightradar24/fr24api-mcp#### get_live_flights_positions_light Get real-time aircraft positions with basic information.
Parameters (at least one required):
bounds: Geographic area (north,south,west,east coordinates)flights: Flight numbers (comma-separated, max 15)callsigns: Flight callsigns (comma-separated, max 15)registrations: Aircraft registrations (comma-separated, max 15)airports: Airport codes with optional direction (e.g., "inbound:JFK,outbound:LAX")routes: Flight routes (e.g., "JFK-LAX,LHR-CDG")aircraft: Aircraft ICAO types (comma-separated, max 15)altitude_ranges: Altitude ranges in feet (e.g., "0-3000,30000-40000")categories: Flight categories (P,C,M,J,T,H,B,G,D,V,O,N)limit: Maximum results (default: no limit, max: 30000)#### get_live_flights_positions_full Get real-time aircraft positions with comprehensive flight details. Same parameters as above
#### get_live_flights_count Get count of live flights matching criteria. Same parameters as above
#### get_historic_flights_positions_full Get historical flight positions with full details.
Required Parameters:
timestamp: Unix timestamp for historical snapshotOptional Parameters: Same as live flight parameters
#### get_historic_flights_positions_light Get historical flight positions with basic information. Same parameters as above
#### get_historic_flights_count Get count of historical flights. Same parameters as above
#### get_flight_summary_full Get comprehensive flight takeoff/landing information.
Required Parameters:
flight_datetime_from: Start datetime (YYYY-MM-DDTHH:MM:SSZ)flight_datetime_to: End datetime (YYYY-MM-DDTHH:MM:SSZ)Optional Parameters:
flights, callsigns, registrations, airports, routes, aircraftsort: Sort order ("asc" or "desc")limit: Maximum results (max: 20000)#### get_flight_summary_light Get essential flight takeoff/landing information. Same parameters as above
#### get_flight_summary_count Get count of flights in summary query. Same parameters as above (without sort/limit)
#### get_flight_tracks Get detailed positional tracks for a specific flight.
Required Parameters:
flight_id: Flightradar24 flight ID (hexadecimal)#### get_airline_info Get airline information by ICAO code.
Required Parameters:
icao: Airline ICAO code#### get_airport_info_light Get basic airport information.
Required Parameters:
code: Airport IATA or ICAO code#### get_airport_info_full Get comprehensive airport information including location, elevation, timezone.
Required Parameters:
code: Airport IATA or ICAO codeGet live flights in the New York area with bounds: 41.0,-74.5,40.5,-73.5Get flight tracks for flight ID: 2f4a8b3cGet historical flights at JFK airport on timestamp 1640995200 with airports: inbound:JFKGet flight summary from 2024-01-01T00:00:00Z to 2024-01-02T00:00:00Z for route JFK-LAXgit clone https://github.com/flightradar24/fr24api-mcp.git
cd fr24api-mcp
npm install
npm run buildMIT License - see LICENSE file for details.
Release to MCP Registry
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.