adsb.lol MCP Server
Provides AI assistants with real-time aircraft tracking, FAA registration, and OpenSky flight data through the Model Context Protocol.
README
adsb.lol-mcp
A Model Context Protocol (MCP) interface to the adsb.lol API and related aviation data services.
Overview
This project provides a Model Context Protocol server that allows AI assistants to access real-time aircraft tracking data, FAA registration information, and OpenSky flight data. The server acts as a bridge between AI models and various aviation data sources.
Features
- ADSB.lol API Integration: Query real-time aircraft data from the adsb.lol API
- FAA Registration Data: Look up aircraft registration details from the FAA registry
- OpenSky Integration: Access historical flight data through the OpenSky Network API
- Local Data Caching: SQLite database for efficient caching of aircraft and flight data
- Formatted Output: Structured data presentation for AI consumption
- Emergency Services Tracking: Specialized tracking for emergency and government aircraft
Tech Stack
- MCP: Built on the Model Context Protocol for AI integration
- Python 3.12+: Modern Python features
- UV: For dependency management and virtual environment
- Pytest: Comprehensive test suite for all components
- SQLite: Local database for caching and persistence
- HTTPX: Asynchronous HTTP requests
Installation
Prerequisites
- Python 3.12 or higher
- UV package manager
- Git
Cold Start Setup
# Clone the repository with submodules
git clone --recursive https://github.com/x86ed/adsb.lol-mcp.git
cd adsb.lol-mcp
# If you already cloned without --recursive, initialize submodules
git submodule update --init --recursive
# Set up Python environment with UV
uv venv
source .venv/bin/activate # On macOS/Linux
# .venv\Scripts\activate # On Windows
# Install all dependencies
uv pip install -e .
# Initialize the aircraft database (creates aircraft.db if it doesn't exist)
python -c "from adsblol.api_v2 import setup_lol_aircraft_database; setup_lol_aircraft_database()"
OpenSky API Setup
This project uses a local copy of the OpenSky API Python library located in the opensky-api/python directory. The project is configured to use this local version rather than the PyPI package to ensure compatibility and access to the latest features.
Pulling Down OpenSky Code
The OpenSky API is included as a Git submodule. To ensure you have the latest version:
# If setting up for the first time or the opensky-api directory is empty
git submodule update --init --recursive
# To update to the latest OpenSky API code
git submodule update --remote opensky-api
# If you need to manually clone the OpenSky repository (fallback option)
git clone https://github.com/openskynetwork/opensky-api.git
The local OpenSky API dependency is automatically handled by the pyproject.toml configuration:
[tool.uv.sources]
opensky-api = { path = "opensky-api/python" }
Troubleshooting:
- If the
opensky-apidirectory is empty, rungit submodule update --init --recursive - Verify the Python module exists at
opensky-api/python/opensky_api.py - If you encounter import errors, ensure the submodule is properly initialized
Testing
# Run the test suite
pytest
Usage
# Run the MCP server
python -m adsblol.main
License
See the LICENSE file for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.