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!
Clone this repository somewhere on your computer:
git clone https://github.com/sunsetcoder/flightradar24-mcp-server.git
Install dependencies & build the project:
cd flightradar24-mcp-server
npm install
npm run build
Open your Claude Desktop configuration file:
# 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:
{
"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:
/FULL/PATH/TO/flightradar24-mcp-server
with the actual full path to where you cloned the repositoryenv
section/
) in the path, even on WindowsRestart Claude Desktop for the changes to take effect
Copy .env.example
to .env
:
cp .env.example .env
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.
Once the server is configured, you can ask Claude questions like:
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]
claude_desktop_config.json
is correct
## 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 is absolute and correct
4. Look for error messages in Claude Desktop's logs
## License 📄
MIT - Feel free to use this however you want!
---
Made with ❤️ for aviation enthusiasts
Seamless access to top MCP servers powering the future of AI integration.