Skip to content

Latest commit

 

History

History
85 lines (52 loc) · 2.02 KB

File metadata and controls

85 lines (52 loc) · 2.02 KB

Flightradar24 MCP Server 🛩️

A containerized version of "Flightradar24 MCP Server 🛩️"

Repository: sunsetcoder/flightradar24-mcp-server

Description

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!

Usage

The containers are built automatically and are available on the GitHub Container Registry.

  1. Pull the Docker image:
docker pull ghcr.io/metorial/mcp-container--sunsetcoder--flightradar24-mcp-server--flightradar-24-mcp-server
  1. 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.

Configuration

The container supports the following configuration options:

Environment Variables

  • FR24_API_KEY
  • FR24_API_URL

Usage with Claude

{
  "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"
      }
    }
  }
}

License

Please refer to the license provided in the project repository for more information.

Contributing

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