Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

flightradar24-mcp-server

MCP.Pizza Chef: sunsetcoder

The flightradar24-mcp-server is a Model Context Protocol server designed to provide real-time flight tracking by integrating Flightradar24 data. It enables users to monitor any flight live, check arrival and departure times, view airport flight statuses, and track emergency flights. Ideal for aviation enthusiasts, travel planners, and curious users, this server works seamlessly with Claude Desktop and requires a Flightradar24 API key. It offers a powerful, real-time aviation data feed accessible through the MCP framework, enhancing AI models with live flight context for dynamic, informed interactions.

Use This MCP server To

Track live flight status in real-time Retrieve arrival and departure times for flights Monitor flight statuses at specific airports Detect and track emergency flights Integrate live flight data into AI workflows Enhance travel planning with real-time flight info

README

Flightradar24 MCP Server ๐Ÿ›ฉ๏ธ

A Claude Desktop MCP server that helps you track flights in real-time using Flightradar24 data. Perfect for aviation enthusiasts, travel planners, or anyone curious about flights overhead!

What Can This Do? โœจ

  • ๐Ÿ” Track any flight in real-time
  • โฐ Get arrival and departure times for specific flights
  • ๐ŸŒ‰ View the status of flights at an airport
  • ๐Ÿšจ Monitor emergency flights
Anthropic Claude MCP Hackathon - FlightRadar24 MCP server

Setup Guide ๐Ÿš€

1. Prerequisites

  • Claude Desktop installed on your computer
  • A Flightradar24 API key (get one from Flightradar24's website)*

2. Installation

  1. Clone this repository somewhere on your computer:

    git clone https://github.com/sunsetcoder/flightradar24-mcp-server.git
  2. Install dependencies & build the project:

    cd flightradar24-mcp-server
    npm install
    npm run build

3. Integration with Claude Desktop

  1. Open your Claude Desktop configuration file:

    # On Mac:
    ~/Library/Application Support/Claude/claude_desktop_config.json
    
    # On Windows:
    %APPDATA%/Claude/claude_desktop_config.json
    
  2. Add the following to the mcpServers object in your config:

    {
      "mcpServers": {
        "flightradar24-server": {
          "command": "node",
          "args": [
            "/Users/<username>/<FULL_PATH...>/flightradar24-mcp-server/dist/index.js"
          ],
          "env": {
            "FR24_API_KEY": "your_api_key_here",
            "FR24_API_URL": "https://fr24api.flightradar24.com"
          }
        }
      }
    }
  3. Important Steps:

    • Replace /FULL/PATH/TO/flightradar24-mcp-server with the actual full path to where you cloned the repository
    • Add your Flightradar24 API key in the env section
    • Make sure to use forward slashes (/) in the path, even on Windows
  4. Restart Claude Desktop for the changes to take effect

Environment Setup

  1. Copy .env.example to .env:

    cp .env.example .env
  2. Update the .env file with your actual Flightradar24 API key:

    FR24_API_KEY=your_actual_api_key_here

Note: Never commit your actual API key to version control. The .env file is ignored by git for security reasons.

Let's Try It Out! ๐ŸŽฎ

Once the server is configured, you can ask Claude questions like:

  1. "What's the ETA for United Airlines flight UA123?"
  2. "Show me all flights currently at SFO"
  3. "Are there any emergency flights in the area?"
  4. "Show me all international flights arriving at SFO in the next 2 hours"
  5. "How many commercial flights are currently over the Pacific Ocean?"
  6. "Identify any flights that have declared an emergency in the California region"

Example conversation with Claude:

You: What's the status of flight UA123?
Claude: Let me check that for you...
[Claude will use the MCP server to fetch real-time flight information]

Common Questions & Troubleshooting ๐Ÿค”

"Claude can't connect to the server"

  • Check if the path in claude_desktop_config.json is correct
  • Make sure you're using the full absolute path
  • Verify your API key is correct
  • Try restarting Claude Desktop

"The server isn't responding"

  • Make sure your Flightradar24 API key is valid
  • Check if the API URL is correct
  • Look for any error messages in server logs

FlightRadar API Access

  • Note: Using Flightradar24's API requires a subscription

Need More Help? ๐Ÿ†˜

  1. Make sure Claude Desktop is properly installed
  2. Verify your Flightradar24 API key is active
  3. Check the path in your configuration file is correct
  4. Look for error messages in MCP server logs

License ๐Ÿ“„

MIT


Made with โค๏ธ for aviation enthusiasts

flightradar24-mcp-server FAQ

How do I set up the flightradar24-mcp-server?
Clone the repository, install dependencies, and configure it with your Flightradar24 API key. Ensure Claude Desktop is installed.
Do I need a Flightradar24 API key to use this server?
Yes, a valid Flightradar24 API key is required to access flight data.
Can this server track emergency flights?
Yes, it supports monitoring emergency flights in real-time.
Is this server compatible only with Claude Desktop?
It is designed primarily for Claude Desktop but can be adapted for other MCP hosts.
What kind of flight data can I access?
You can access real-time flight tracking, arrival and departure times, airport flight statuses, and emergency flight monitoring.
How secure is the data handled by this server?
The server uses secure API calls to Flightradar24 and follows MCP principles for scoped and observable model interaction.
Can I use this server with other LLM providers like OpenAI or Gemini?
While designed for Claude Desktop, the MCP protocol allows integration with other LLMs such as OpenAI and Gemini with appropriate client setup.
What are the prerequisites for running this server?
You need Claude Desktop installed and a Flightradar24 API key.