A containerized version of "Flightradar24 MCP Server 🛩️"
Repository: sunsetcoder/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!
The containers are built automatically and are available on the GitHub Container Registry.
- Pull the Docker image:
docker pull ghcr.io/metorial/mcp-container--sunsetcoder--flightradar24-mcp-server--flightradar-24-mcp-server
- Run the container:
docker run -i --rm \
-e FR24_API_KEY=fr-24-api-key -e FR24_API_URL=fr-24-api-url \
ghcr.io/metorial/mcp-container--sunsetcoder--flightradar24-mcp-server--flightradar-24-mcp-server "npm run start"
--rm
removes the container after it exits, so you don't have to clean up manually.-i
allows you to interact with the container in your terminal.
The container supports the following configuration options:
FR24_API_KEY
FR24_API_URL
{
"mcpServers": {
"flightradar-24-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--sunsetcoder--flightradar24-mcp-server--flightradar-24-mcp-server",
"npm run start"
],
"env": {
"FR24_API_KEY": "fr-24-api-key",
"FR24_API_URL": "fr-24-api-url"
}
}
}
}
Please refer to the license provided in the project repository for more information.
Contributions are welcome! If you notice any issues or have suggestions for improvements, please open an issue or submit a pull request.
Containerized with ❤️ by Metorial