Aviation MCP Server
MCP server giving AI agents access to real-time aviation data — live flight tracking, airport weather, airline and airport information.
README
Aviation MCP Server
MCP server giving AI agents access to real-time aviation data — live flight tracking, airport weather, airline and airport information.
Features
| Tool | Description | Source |
|---|---|---|
track_live_flights |
Current flights worldwide or in a specific area | OpenSky Network |
track_flight |
Track a specific flight by callsign or ICAO24 | OpenSky Network |
get_flight_path |
Historical flight path/trajectory | OpenSky Network |
get_airport_arrivals |
Recent arrivals at an airport | OpenSky Network |
get_airport_departures |
Recent departures from an airport | OpenSky Network |
get_airport_weather |
Current METAR weather at an airport | AviationWeather.gov |
get_weather_forecast |
TAF weather forecast for an airport | AviationWeather.gov |
get_aviation_warnings |
Active SIGMETs and aviation warnings | AviationWeather.gov |
get_airport_info |
Airport details (location, timezone, etc.) | AirLabs |
get_airline_info |
Airline details (fleet, hub, status) | AirLabs |
Data Sources
- OpenSky Network — Live flight tracking, arrivals/departures, flight paths (no API key needed, 100 calls/day)
- AviationWeather.gov — METAR, TAF, SIGMETs (no API key needed, 100 req/min)
- AirLabs — Airport and airline database (free tier: 1,000 calls/month, API key required)
Installation
With pip
pip install aviation-mcp-server
From source
git clone https://github.com/AiAgentKarl/aviation-mcp-server.git
cd aviation-mcp-server
pip install -e .
Configuration
API Keys
Copy .env.example to .env and add your keys:
cp .env.example .env
# AirLabs — Optional (https://airlabs.co)
AIRLABS_API_KEY=your-key-here
Note: OpenSky Network and AviationWeather.gov require no API key. The AirLabs key is only needed for
get_airport_infoandget_airline_info.
Claude Desktop / Claude Code
Add to your MCP configuration:
{
"mcpServers": {
"aviation": {
"type": "stdio",
"command": "python",
"args": ["-m", "src.server"],
"env": {
"AIRLABS_API_KEY": "your-key-here"
}
}
}
}
Using uvx (no install needed)
{
"mcpServers": {
"aviation": {
"type": "stdio",
"command": "uvx",
"args": ["aviation-mcp-server"],
"env": {
"AIRLABS_API_KEY": "your-key-here"
}
}
}
}
Usage Examples
Track flights over Germany:
"Show me all flights currently over Germany"
Check airport weather:
"What's the current weather at Frankfurt Airport?"
Track a specific flight:
"Track Lufthansa flight DLH400"
Get airport arrivals:
"Show me recent arrivals at JFK"
Aviation warnings:
"Are there any active SIGMETs?"
Airport Codes
This server uses ICAO airport codes (4 letters) for weather and flight data:
| Airport | IATA | ICAO |
|---|---|---|
| Frankfurt | FRA | EDDF |
| Munich | MUC | EDDM |
| Berlin | BER | EDDB |
| New York JFK | JFK | KJFK |
| London Heathrow | LHR | EGLL |
| Paris CDG | CDG | LFPG |
| Tokyo Narita | NRT | RJAA |
Rate Limits
| API | Limit | Auth |
|---|---|---|
| OpenSky Network | 100 calls/day (anonymous) | None |
| AviationWeather.gov | 100 requests/minute | None |
| AirLabs | 1,000 calls/month (free tier) | API Key |
Tech Stack
- Python 3.11+
- MCP SDK (FastMCP)
- httpx (async HTTP)
- OpenSky Network, AviationWeather.gov, AirLabs APIs
More MCP Servers by AiAgentKarl
| Category | Servers |
|---|---|
| 🔗 Blockchain | Solana |
| 🌍 Data | Weather · Germany · Agriculture · Space · Aviation · EU Companies |
| 🔒 Security | Cybersecurity · Policy Gateway · Audit Trail |
| 🤖 Agent Infra | Memory · Directory · Hub · Reputation |
| 🔬 Research | Academic · LLM Benchmark · Legal |
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。
mcp-server-qdrant
这个仓库展示了如何为向量搜索引擎 Qdrant 创建一个 MCP (Managed Control Plane) 服务器的示例。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。