ADOS MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ADOS MCPshow current fleet status and health"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ADOS MCP
A Model Context Protocol server for the ADOS drone platform. Read and control a drone or a whole fleet from your AI client, with a scope on every connection, a confirmation on anything that moves an aircraft, and an audit trail on every call.
Part of the ADOS ecosystem. Pairs with the ADOS Drone Agent, ADOS Mission Control, and ADOS Extensions.
What it is
ADOS MCP lets any MCP-capable AI client, Claude Code first-class, plus Claude Desktop, Cursor, VS Code, or a plain HTTP client, connect to an ADOS drone or ground station and:
Read live status, telemetry, and health for a node or a fleet.
Read every flight-controller parameter with full meaning and get tuning recommendations.
Administer the platform: rename a node, update the software, install and configure plugins, restart a service, manage pairing and network settings.
Query logs and a full audit trail.
Fly, when the operator explicitly grants it: arm, change mode, go to a point, run a mission, land, return home, or stop.
The drone is the server; the AI is the client. No model runs on the drone. The server is a thin layer over interfaces that already exist, so behavior is defined once and stays consistent whether it is reached from the console, the command line, or an AI client.
Visibility is broad; action is gated. Reading is open within the granted scope. Writing is controlled by that scope, a safety class per action, a confirmation step for anything that moves an aircraft or changes state, and an operator-present check for flight. Every call, allowed or denied, is recorded.
Related MCP server: ArduPilot MCP Server Sandbox
Ways to run it
You run the server yourself, on your own machine. Local-first: reach your drones directly over the LAN — no sign-in, no cloud. Cloud is an opt-in path for reaching your fleet from anywhere.
Mode | Command | Reaches | Needs |
Agent (default) |
| one drone on your LAN | the drone's pairing key |
Local fleet |
| many drones on your LAN | the fleet in one env var (or a file), each drone's host + key; |
Fleet (cloud, opt-in) |
| your fleet from anywhere, via Mission Control | a Mission Control sign-in + a minted credential |
All three expose the identical tools; only the reach differs.
Agent and local-fleet are the local-first paths. The server talks straight to your drones over the LAN — no cloud round-trip, no login. A drone's own pairing key (stored when you paired it in Mission Control) authorizes the connection. This is the everyday path for a bench, a field setup, or your own network.
Fleet-mode is the opt-in "manage from anywhere" path. It connects to a Mission Control (GCS) backend — your own local one (
--gcs local) or the production one (--gcs prod) — as you, the operator, and reaches the drones Mission Control tracks in the cloud. Useful when you are off the drones' network; it needs a signed-in operator to mint a credential.
Set it up (Claude Code)
You run the server yourself, from this repo — there is no package to install. The Mission Control MCP tab has a guided wizard that walks you through these steps and fills in your drone's host and pairing key (local) or your credential (cloud).
Prerequisites: Node ≥ 20, git, pnpm (npm install -g pnpm), and an MCP client (e.g. Claude Code).
1. Get and build the server:
git clone https://github.com/altnautica/ADOS-MCP.git
cd ADOS-MCP
./scripts/setup.sh # installs, builds, and prints your exact add command
# (or do it by hand: pnpm install && pnpm build)2. Add the server to your client. Start local — reach a drone on your LAN with no login. The pairing key rides in the client's environment (-e), not your shell (the wizard fills it in):
# One drone on the LAN:
claude mcp add ados -e ADOS_MCP_AGENT_KEY=<pairing-key> -- \
node "$(pwd)/dist/index.js" --target agent <host>
# Your whole LAN fleet in ONE command (the MCP tab's "control all my drones" wizard
# generates this — every drone's host + key rides in the env, no file):
claude mcp add ados -e ADOS_MCP_FLEET=<blob> -- node "$(pwd)/dist/index.js" --target local-fleet
# (or point at a fleet file: --target local-fleet ~/.ados/mcp/fleet.json)
# Add --discover to also auto-adopt new UNPAIRED drones on your LAN.Or, to reach your fleet from anywhere through the cloud (opt-in), mint a credential in the Mission Control MCP tab:
claude mcp add ados -e ADOS_MCP_TOKEN=<credential> -- \
node "$(pwd)/dist/index.js" --target fleet --gcs prodThe server auto-selects the stdio transport when a client launches it, so no --transport flag is needed.
3. Check it works (optional, before or without a client):
# Local (a drone on your LAN):
ADOS_MCP_AGENT_KEY=<pairing-key> node dist/index.js --target agent <host> --verify
# → ✓ Connected — agent mode → http://<host>:8080
# Cloud (your fleet from anywhere):
ADOS_MCP_TOKEN=<credential> node dist/index.js --target fleet --gcs prod --verifyThen ask your client for a drone's status. See docs/ for the tool catalog and the full architecture.
Transports
Streamable HTTP (
POST /mcp, single endpoint, SSE upgrade for streams), the primary networked transport.stdio, the local one-liner for Claude Code and Desktop.
Unix socket (
/run/ados/mcp.sock), on-box in agent and local-fleet modes, where local presence is the credential.
Safety model
A token carries scopes (
read,safe_write,admin,flight,destructive,secret_read). Flight and destructive are off by default.Every write is checked against the token scope, a per-tool safety class, and, for flight or destructive actions, a typed confirmation and an operator-present signal.
Annotations (
readOnlyHint,destructiveHint) are advertised honestly but are hints, never the enforcement point. The server enforces.Every call produces one redacted audit event.
Develop
pnpm install
pnpm typecheck
pnpm lint
pnpm test
pnpm buildThe connector is a thin shim, so it holds no telemetry buffers and runs no inference. It calls the platform's existing interfaces and presents them through MCP.
Contributing
Issues and pull requests are welcome. The repository is developed in the open under the MIT license. Please keep contributions technical and free of any private or third-party content.
License
MIT. See LICENSE. Built for civilian use.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityAmaintenanceDrone Airspace Governance - MCP server providing AI-powered tools and automation by MEOK AI LabsLast updated28MIT
- Alicense-qualityDmaintenanceEnables natural language control of ArduPilot drones via MAVLink, supporting arm, takeoff, mode changes, and mission uploads.Last updated9GPL 3.0
- Alicense-qualityAmaintenanceEnables AI agents to interact with an ArduPilot vehicle in real-time via MAVLink, including reading state, inspecting and changing parameters, switching flight modes, diagnosing arming failures, and gated arming/disarming.Last updated1MIT
- Flicense-qualityBmaintenanceEnables ArduPilot drone control through MAVSDK plugins, supporting mission upload, telemetry, and flight commands via MCP tools.Last updated
Related MCP Connectors
Runtime permission, approval, and audit layer for AI agent tool execution.
Create, test, publish, and manage Dreamlit notification workflows from AI clients.
Enterprise AI Control Plane: governance, guardrails, spend tracking, compliance & smart routing.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/altnautica/ADOS-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server