MCP Hub
Back to servers

map-dronelytics

US drone airspace intelligence and mission planning. 24 MCP tools: check airspace restrictions across 11 FAA data layers, plan grid/orbit/corridor surveys, validate Part 107 compliance, generate pre-flight briefings, and export to KML/GPX/QGC/Litchi/WPML.

glama
Updated
Apr 18, 2026

@dronelytics/mcp

MCP (Model Context Protocol) server for the Dronelytics drone mission planning platform. Enables AI assistants to query US drone airspace, plan missions, manage drone profiles, and export flight plans.

The first drone platform built for AI agents. Learn more | Read why we built this

Setup

1. Generate an API key

Go to Settings > API Keys in hub.dronelytics.io and create a new key.

2. Configure your MCP client

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "dronelytics": {
      "command": "npx",
      "args": ["-y", "@dronelytics/mcp"],
      "env": {
        "DRONELYTICS_API_KEY": "dk_your_key_here"
      }
    }
  }
}

Claude Code (.mcp.json in your project or ~/.claude/.mcp.json globally):

{
  "mcpServers": {
    "dronelytics": {
      "command": "npx",
      "args": ["-y", "@dronelytics/mcp"],
      "env": {
        "DRONELYTICS_API_KEY": "dk_your_key_here"
      }
    }
  }
}

Cursor / Windsurf — same npx config in your MCP settings.

Environment Variables

VariableRequiredDefaultDescription
DRONELYTICS_API_KEYYesYour API key (starts with dk_)
DRONELYTICS_API_URLNohttps://hub.dronelytics.io/api/v1API base URL (override for local dev)

Tools (24)

Airspace Intelligence

ToolDescription
check_airspaceQuery 11 FAA airspace layers at a lat/lng — returns flyability assessment
get_active_tfrsList active TFRs near a location
get_notamsGet active NOTAMs near a location
check_live_trafficLive ADS-B aircraft traffic near a location
validate_flightPart 107 compliance check for location, altitude, and time
preflight_briefingGO/CAUTION/NO-GO briefing for a saved mission

Mission Management

ToolDescription
list_missionsList all user missions
get_missionGet full mission with waypoints
create_missionCreate a new mission
update_missionUpdate an existing mission
delete_missionDelete a mission
duplicate_missionClone a mission
share_missionGenerate a public share link
export_missionExport to KML, GPX, QGC, Litchi CSV, or WPML
import_litchiImport a Litchi CSV file

Mission Generation

ToolDescription
list_camerasList camera presets for survey planning
generate_grid_surveyGenerate grid/mapping survey from polygon
generate_orbit_missionGenerate orbit around a point of interest
generate_panorama_missionGenerate panorama capture grid
generate_spiral_missionGenerate spiral survey
generate_corridor_missionGenerate corridor mapping along a path

Drone Profiles

ToolDescription
list_dronesList user's drone profiles
create_droneAdd a drone profile
update_droneUpdate a drone profile
delete_droneRemove a drone profile

Airspace Data

The check_airspace tool queries 11 FAA data layers in a single call:

  • UASFM ceiling — maximum altitude grid from the FAA UAS Facility Map
  • Class airspace — B, C, D, E2, E3, E4 controlled airspace boundaries
  • TFRs — active Temporary Flight Restrictions (refreshed every 15 minutes)
  • NOTAMs — Notices to Air Missions with proximity filtering
  • Special Use Airspace — prohibited areas, restricted areas, MOAs, alert areas
  • NSUFRs — National Security UAS Flight Restrictions
  • Stadiums — stadium TFR zones within 3nm
  • FRIAs — FAA-Recognized Identification Areas for recreational flyers
  • Airports — nearby airports with distance and type
  • Mode C veil — 30nm transponder requirement zones around major airports
  • Military training routes — low-altitude military flight corridors

All data is sourced from FAA ArcGIS services and refreshed automatically.

Example Prompts

  • "Can I fly a drone at the Golden Gate Bridge?"
  • "Plan a grid survey of this 10-acre field at 200ft with my DJI Mavic 3"
  • "Give me a pre-flight briefing for my construction survey mission"
  • "Export all my missions tagged 'client-project' to KML"
  • "What airports are within 5nm of 37.7749, -122.4194?"
  • "Validate a flight at 300ft at the Statue of Liberty at 2pm tomorrow"

npm

npm install @dronelytics/mcp

https://www.npmjs.com/package/@dronelytics/mcp

License

MIT

Reviews

No reviews yet

Sign in to write a review