Back to MCP directory
publicPublicdnsLocal runtime

flight-mcp

实时航班追踪服务,为AI助手提供实时飞行数据,支持搜索、跟踪和分析飞机活动。

article

README

🛩️ 航班MCP服务器

为大语言模型提供实时航班跟踪服务 — 将任何人工智能助手连接到来自ADS-B Exchange的实时飞机数据。

通过实时航班信息,让你的人工智能对话焕然一新。你可以按位置搜索飞机、跟踪特定航班、监控军事活动并发现航空模式 — 所有这些都能通过简洁的MCP界面实现。

🚀 快速开始

1. 环境搭建

bun install && bun run build

2. 获取API密钥

3. 使用检查器进行测试

bun run inspect

💻 使用示例

基础用法

# 在指定坐标附近搜索飞机
search_aircraft(lat=40.7128, lon=-74.0060, radius_nm=25)
# → 纽约市25海里范围内的飞机

# 获取特定飞机的详细信息
get_aircraft(hex="a4b065")
# → 通过国际民航组织代码获取完整的飞机数据

# 按条件筛选浏览军用飞机
list_military_aircraft(
  region="us",           # 美国/欧洲/亚洲/所有地区
  aircraft_type="H60",   # 直升机/运输机/战斗机
  min_altitude=1000,     # 排除地面交通
  limit=20,              # 每页数量
  page=2                 # 分页
)

# 发现可用的飞机类型
get_military_aircraft_types(region="us")
# → 可用类型:H60、C17、F35等。

示例响应

{
  "hex": "a4b065",
  "callsign": "NKS185",
  "position": {"lat": 51.470, "lon": -0.456},
  "altitude": 38000,
  "speed": 460,
  "heading": 275
}

🎯 应用场景

  • 航班跟踪:监控特定飞机或航线。
  • 航空研究:分析交通模式和飞机类型。
  • 军事监控:按地区跟踪国防飞机活动。
  • 位置情报:查找感兴趣地点附近的飞机。
  • 实时警报:为飞机事件创建通知。

请注意速率限制最小轮询间隔为4秒由ADS-B Exchange提供支持

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client