
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@bachstudio/fr24api-mcp
Advanced tools
MCP server providing access to the Flightradar24 API for real-time and historical flight data
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.
Original Project: This project is based on the official Flightradar24 MCP server.
Original repository: https://github.com/Flightradar24/fr24api-mcp
npm install -g @bachstudio/fr24api-mcp
Add this configuration to your claude_desktop_config.json file:
{
"mcpServers": {
"fr24api": {
"command": "npx",
"args": ["@bachstudio/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 @bachstudio/fr24api-mcp
get_live_flights_positions_lightGet 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_fullGet real-time aircraft positions with comprehensive flight details. Same parameters as above
get_live_flights_countGet count of live flights matching criteria. Same parameters as above
get_historic_flights_positions_fullGet historical flight positions with full details.
Required Parameters:
timestamp: Unix timestamp for historical snapshotOptional Parameters: Same as live flight parameters
get_historic_flights_positions_lightGet historical flight positions with basic information. Same parameters as above
get_historic_flights_countGet count of historical flights. Same parameters as above
get_flight_summary_fullGet 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_lightGet essential flight takeoff/landing information. Same parameters as above
get_flight_summary_countGet count of flights in summary query. Same parameters as above (without sort/limit)
get_flight_tracksGet detailed positional tracks for a specific flight.
Required Parameters:
flight_id: Flightradar24 flight ID (hexadecimal)get_airline_infoGet airline information by ICAO code.
Required Parameters:
icao: Airline ICAO codeget_airport_info_lightGet basic airport information.
Required Parameters:
code: Airport IATA or ICAO codeget_airport_info_fullGet 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.5
Get flight tracks for flight ID: 2f4a8b3c
Get historical flights at JFK airport on timestamp 1640995200 with airports: inbound:JFK
Get flight summary from 2024-01-01T00:00:00Z to 2024-01-02T00:00:00Z for route JFK-LAX
git clone https://github.com/BACH-AI-Tools/fr24api-mcp.git
cd fr24api-mcp
npm install
npm run build
MIT License - see LICENSE file for details.
Release to MCP Registry
FAQs
MCP server providing access to the Flightradar24 API for real-time and historical flight data
The npm package @bachstudio/fr24api-mcp receives a total of 26 weekly downloads. As such, @bachstudio/fr24api-mcp popularity was classified as not popular.
We found that @bachstudio/fr24api-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.