by sunsetcoder
Flightradar24 MCP Server is a Claude Desktop Model Context Protocol (MCP) server that enables real-time flight tracking using Flightradar24 data, designed for aviation enthusiasts and travel planners.
Flightradar24 MCP Server is a Claude Desktop Model Context Protocol (MCP) server that enables real-time flight tracking using Flightradar24 data. It is designed for aviation enthusiasts, travel planners, and anyone interested in monitoring flights.
To use the Flightradar24 MCP Server, you need Claude Desktop installed and a Flightradar24 API key. After cloning the repository and installing dependencies, you configure Claude Desktop by adding the server details to its configuration file, including the path to the server and your Flightradar24 API key. You also need to set up an .env
file with your API key. Once configured and Claude Desktop is restarted, you can interact with Claude to get flight information.
claude_desktop_config.json
, ensure it's a full absolute path, verify API key correctness, and restart Claude Desktop.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 correctMIT
Made with ❤️ for aviation enthusiasts
Please log in to share your review and rating for this MCP.
Discover more MCP servers with similar functionality and use cases
by nanbingxyz
A cross‑platform desktop AI assistant that connects to major LLM providers, supports a local knowledge base, and enables tool integration via Model Context Protocol servers.
by loopwork
iMCP is a macOS application that provides a Model Context Protocol (MCP) server, enabling AI clients like Claude Desktop to securely access and utilize your personal data from Apple services such as Messages, Contacts, and Reminders. Its main purpose is to bridge your digital life with AI, allowing for AI-powered personal assistance and contextual interactions without collecting or storing your data.
by KyrieTangSheng
An MCP Server for the National Park Service (NPS) API, providing real-time information about U.S. National Parks, including park details, alerts, and activities.
by isdaniel
Provides current and forecast weather data for specified cities via the Open-Meteo API and returns the current datetime for a given timezone.
by mfukushim
A virtual traveler library for MCP that integrates various APIs to simulate virtual travel experiences.
by aqara
An MCP server for controlling Aqara smart home devices using natural language.
by NitayRabi
Fitbit MCP (Model Context Protocol) enables AI assistants to access and analyze your Fitbit health and fitness data. It acts as an MCP server, connecting to the Fitbit API to provide a wide range of health metrics.
by mschneider82
mcp-openweather is an MCP server that provides current and forecast weather information using the free OpenWeatherMap API.
by netdata
Real-time, per‑second infrastructure monitoring platform that provides instant insights, auto‑discovery, edge‑based machine‑learning anomaly detection, and lightweight visualizations without requiring complex configuration.