DefenseOps Aerospace MCP Platform
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., "@DefenseOps Aerospace MCP PlatformCheck telemetry for UAV-702"
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.
โ๏ธ DefenseOps: Aerospace Fleet Telemetry & Defense Intelligence MCP Platform
A flagship, production-grade Model Context Protocol (MCP) platform tailored for Aerospace and Defense Applications. Combines real-time aircraft telemetry monitoring, STANAG / Mil-Spec technical manual RAG search, read-only fleet maintenance databases, sandboxed mission log archives, and command alert dispatching.
๐ฝ๏ธ System Architecture
flowchart TD
subgraph Client ["Tactical Operations / LLM Host"]
A[Claude Desktop / Cursor / Defense Agent Host]
end
subgraph MCP ["DefenseOps Master MCP Platform"]
B[Stdio Server Transport]
C[FastMCP Tool Dispatcher]
D[Aerospace Telemetry Engine]
E[Mil-Spec RAG Retriever]
F[Fleet Logistics DB Engine]
G[Mission Log Guard]
end
subgraph Infrastructure ["Defense Infrastructure"]
H[Live Flight Telemetry & Open-Meteo Weather]
I[F-35 Manuals & STANAG 4586 Checklists]
J[(SQLite/PostgreSQL Maintenance DB)]
K[Sandboxed Mission Logs Storage]
end
A <-->|JSON-RPC via Stdio| B
B --> C
C -->|get_aircraft_telemetry| D
C -->|search_flight_manuals| E
C -->|inspect_fleet_logistics| F
C -->|export_mission_debrief| G
D --> H
E --> I
F --> J
G --> KRelated MCP server: EMS MCP Server
๐ก Real-World Use Case
In aerospace flight operations and defense command centers, pilots, flight engineers, and mission commanders require instantaneous, unified access to multi-modal intelligence:
Live Telemetry & Weather: Monitoring aircraft altitude, ground speed, engine thermal stress, and drop-zone weather.
Emergency Procedures (RAG): Instant vector search over STANAG datalink protocols and F-35 emergency restart manuals during inflight anomalies.
Fleet Maintenance Logistics: Querying flight hours, component wear, and maintenance logs without risking database overwrites.
Mission Debrief Sandboxing: Exporting immutable mission logs with strict path traversal security (
../protection) and automatic.bakbackups.
๐งฐ Available MCP Tools
This server exposes 5 unified defense tools over standard I/O (stdio) transport:
1. get_aircraft_telemetry
Fetches live flight telemetry (altitude, speed, lat/lon, engine temp, fuel %) and drop-zone weather for aircraft (e.g. AF-301, UAV-702, NAV-104).
2. search_flight_manuals
Performs RAG semantic vector search over F-35 flight manuals, UAV emergency link-loss checklists, and STANAG 4586 protocols.
Parameters:
query(string, required): Emergency query (e.g."flameout restart","link loss RTH").
3. inspect_fleet_logistics
Executes read-only SQL queries on aircraft fleet databases, component wear, and maintenance logs.
Parameters:
sql_query(string, required): Read-onlySELECTquery.
4. export_mission_debrief
Safely exports a mission debrief log inside sandboxed storage with path traversal guards and automatic backups.
Parameters:
filename(string, required): Log filename.report_content(string, required): Markdown debrief report text.
5. dispatch_tactical_alert
Dispatches an urgent alert to air command channels (#air-command, #incidents).
๐ฆ Installation & Quickstart
Prerequisites
Python 3.10 or higher
Git
Step-by-Step Setup
# 1. Clone the repository
git clone https://github.com/your-username/defenseops-aerospace-mcp-platform.git
cd defenseops-aerospace-mcp-platform
# 2. Create and activate virtual environment
python -m venv venv
# On Windows (PowerShell):
.\venv\Scripts\activate
# On Linux / macOS:
source venv/bin/activate
# 3. Install package & dependencies
pip install -e .โ๏ธ Configuration (Claude Desktop / Cursor)
Claude Desktop Integration
Add to your claude_desktop_config.json:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"defenseops-platform": {
"command": "D:/Projects/defenseops-aerospace-mcp-platform/venv/Scripts/python.exe",
"args": [
"-m",
"defenseops_mcp.server"
]
}
}
}๐งช Testing & Verification
Run the unified test suite:
python -m pytest -o pythonpath=srcExpected Output
============================= test session starts =============================
platform win32 -- Python 3.11.1, pytest-9.1.1, pluggy-1.6.0
collected 4 items
tests\test_defenseops.py .... [100%]
============================== 4 passed in 0.32s ==============================๐ค Example Defense Intelligence Prompts to Try with Your LLM
Telemetry & Weather Inspection:
"Get real-time flight telemetry for aircraft
AF-301and check ambient drop-zone weather conditions."Emergency Procedure RAG Search:
"Perform a semantic search in the flight manuals for 'engine restart flameout procedure' and list the step-by-step checklist."
Fleet Maintenance DB Analysis:
"Query the maintenance logs database to list all unresolved issues across the UAV and F-35 fleet."
Export Sandboxed Debrief Log:
"Generate a mission debrief log for flight
AF-301and safely export it todebrief_flight_301.md."
๐ License
Distributed under the MIT License. See LICENSE for details.
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
- Flicense-qualityDmaintenanceA real-time flight tracking interface for LLMs that connects AI assistants to live aircraft data from ADS-B Exchange, enabling searches by location, specific flight tracking, military aircraft monitoring, and aviation pattern discovery.4
- AlicenseAqualityCmaintenanceProvides LLM access to the Event Monitoring System (EMS) API for comprehensive flight data analytics and monitoring. It enables users to query flight records, retrieve time-series analytics, and explore aircraft assets or database hierarchies.10MIT
- AlicenseBqualityAmaintenanceProvides sovereign geospatial awareness by wrapping open, non-US-dependent geospatial APIs for AI-agent situational awareness, environmental compliance, and disaster response.5MIT
- Alicense-qualityBmaintenanceEnables AI clients to read live drone status, telemetry, and parameters, and to control drone operations with scoped permissions, confirmation steps, and audit trails.MIT
Related MCP Connectors
Enterprise AI Control Plane: governance, guardrails, spend tracking, compliance & smart routing.
Build, validate, and deploy multi-agent AI solutions from any AI environment.
Deterministic compliance and vertical knowledge bases for autonomous agents. Free 24hr trial.
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/jdbruh18/defenseops-aerospace-mcp-platform'
If you have feedback or need assistance with the MCP directory API, please join our Discord server