Flight tracking service
## Flightradar24 MCP Server: Real-Time Flight Tracking The **Flightradar24 MCP Server** integrates the world's most popular flight tracking platform directly into Google Antigravity, enabling AI assistants to track flights, access aircraft data, and monitor airports programmatically. This integration brings comprehensive aviation data to your development workflow. ### Why Flightradar24 MCP? - **Global Coverage**: Track flights worldwide with data from ADS-B, MLAT, and radar - **Real-Time Data**: Live position updates with altitude, speed, and heading - **Aircraft Database**: Comprehensive aircraft information including type, registration, and photos - **Airport Data**: Live arrival and departure information for airports globally - **Historical Flights**: Access past flight data for route analysis and research ### Key Features #### 1. Flight Tracking ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Track flight BA123 and show me its current position and ETA" }], tools=[{ "name": "fr24_track", "description": "Track live flights" }] ) ``` #### 2. Airport Monitoring ```python # Monitor airport activity response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show me all arrivals at Heathrow in the next 2 hours" }], tools=[{"name": "fr24_airport", "description": "Airport information"}] ) ``` #### 3. Aircraft Lookup ```python # Get aircraft details response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Look up information about this aircraft registration: N12345" }], tools=[{"name": "fr24_aircraft", "description": "Aircraft database"}] ) ``` #### 4. Area Search ```python # Search flights in area response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Find all aircraft currently flying over New York City area" }], tools=[{"name": "fr24_area", "description": "Area search"}] ) ``` ### Configuration ```json { "mcpServers": { "flightradar24": { "command": "npx", "args": ["-y", "@anthropic/mcp-fr24"], "env": { "FR24_API_KEY": "your-fr24-api-key" } } } } ``` ### Use Cases **Travel Applications**: Build apps with real-time flight status and arrival information. **Logistics Tracking**: Monitor cargo flights and plan ground operations. **Aviation Enthusiasts**: Create tools for aircraft spotting and flight tracking. **Airport Operations**: Track inbound and outbound traffic for operational planning. The Flightradar24 MCP Server brings comprehensive flight tracking directly into your development workflow, enabling real-time aviation awareness.
{
"mcpServers": {
"flightradar24": {
"mcpServers": {
"flightradar24": {
"env": {
"FR24_API_KEY": "your-api-key"
},
"args": [
"-y",
"flightradar24-mcp-server"
],
"command": "npx"
}
}
}
}
}