flightradar24-mcp-server
- Travel & Transportation
- Location Services
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!
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
get_flight_positions | Get real-time flight positions with various filtering options |
get_flight_eta | Get estimated arrival time for a specific flight |
Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
FR24_API_KEY | Yes | Your Flightradar24 API key. | |
FR24_API_URL | No | The URL for the Flightradar24 API. | https://fr24api.flightradar24.com |
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
Setup Guide đ
1. Prerequisites
- Claude Desktop installed on your computer
- A Flightradar24 API key (get one from Flightradar24's website)
2. Installation
- Clone this repository somewhere on your computer:Copygit clone https://github.com/sunsetcoder/flightradar24-mcp-server.git
- Install dependencies & build the project:Copycd flightradar24-mcp-server npm install npm run build
3. Integration with Claude Desktop
- Open your Claude Desktop configuration file:Copy# On Mac: ~/Library/Application Support/Claude/claude_desktop_config.json # On Windows: %APPDATA%/Claude/claude_desktop_config.json
- Add the following to the
mcpServers
object in your config:Copy{ "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" } } } } - 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
- Replace
- Restart Claude Desktop for the changes to take effect
Environment Setup
- Copy
.env.example
to.env
:Copycp .env.example .env - Update the
.env
file with your actual Flightradar24 API key:CopyFR24_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:
- "What's the ETA for United Airlines flight UA123?"
- "Show me all flights currently at SFO"
- "Are there any emergency flights in the area?"
- "Show me all international flights arriving at SFO in the next 2 hours"
- "How many commercial flights are currently over the Pacific Ocean?"
- "Identify any flights that have declared an emergency in the California region"
Example conversation with Claude:
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
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues with dependencies of the server.
- Extract server characteristics such as tools, resources, prompts, and required parameters.
Our directory badge helps users to quickly asses that the MCP server is safe, server capabilities, and instructions for installing the server.
Copy the following code to your README.md file: