
Airspace Monitor MCP
- Updated June 15, 2026
- CSOAI-ORG/airspace-monitor-mcp
airspace-monitor-mcp is an MCP server that lets coding agents access MEOK AI Labs airspace monitoring tooling over stdio.
About
airspace-monitor-mcp is a Model Context Protocol server from MEOK AI Labs that exposes airspace monitoring capabilities to AI coding agents over stdio. developers shipping drone apps, flight planners, or logistics tools can register it in Claude Code, Cursor, or similar hosts so the agent can query or reason about airspace context during implementation and ops work. The registry entry ships as a PyPI package at version 1.0.4 with a GitHub source repository. Use it when geographic or regulatory airspace data should be part of agent-driven debugging, feature work, or runbooks rather than manual tab switching. It is an integration layer, not a standalone skill: you still own credentials, rate limits, and whatever upstream data provider the server wraps.
- stdio MCP server (PyPI package airspace-monitor-mcp v1.0.4)
- Published by MEOK AI Labs under CSOAI-ORG on GitHub
- Agent-callable tooling for airspace monitoring workflows
- Fits ops dashboards and incident checks without leaving Claude Code or Cursor
Airspace Monitor MCP by the numbers
- Data as of Aug 10, 2026 (Skillselion catalog sync)
claude mcp add airspace-monitor-mcp -- uvx airspace-monitor-mcpAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| Package | airspace-monitor-mcp |
|---|---|
| Transport | STDIO |
| Auth | None |
| Last updated | June 15, 2026 |
| Repository | CSOAI-ORG/airspace-monitor-mcp ↗ |
What it does
Wire your coding agent to airspace monitoring signals when you build drone, aviation, or geo-fenced products that need live restriction awareness.
Who is it for?
Best when you have drone, UTM, or mapping products and want agent-native airspace checks in local dev.
Skip if: Skip if you need certified ATC systems or enterprise GIS contracts without wrapping your own compliance review.
What you get
After you add the PyPI MCP server to your agent config, the assistant can invoke airspace monitoring tools during build and ops conversations.
- Registered stdio MCP server in your agent configuration
- Agent-invokable airspace monitoring tool calls during dev sessions
By the numbers
- Server version 1.0.4
- Transport: stdio
- Registry package: airspace-monitor-mcp on PyPI
README.md
Airspace Monitor MCP
Airspace monitoring and drone compliance
Airspace monitoring and drone compliance. Check restricted zones, NOTAMs, flight clearance, and altitude limits. By MEOK AI Labs.
🚀 Quick Start
# Install via pip
pip install airspace_monitor_mcp
# Or install via Smithery
npx -y @smithery/cli@latest install airspace-monitor-mcp --client claude
✨ Features
- MCP protocol compliant
- Easy installation
- Well-documented API
- Production-ready
- Active maintenance
📖 Documentation
🛡️ Compliance
This MCP server is built with EU AI Act compliance built-in:
- ✅ Article 9 — Risk Management System
- ✅ Article 13 — Transparency & Instructions for Use
- ✅ Article 15 — Bias Detection & Testing
- ✅ Article 26 — FRIA Support (where applicable)
- ✅ Article 50 — AI Content Watermarking (where applicable)
Need help getting compliant? Book a free 15-min diagnostic →
🏢 Enterprise
Need custom development, SLA guarantees, or white-label deployment?
- Pro: $99/mo — Full MCP suite + EU AI Act tracking
- Enterprise: $499/mo — Custom dev + SLA + Dedicated support
View Pricing → | Contact Sales →
🤝 Part of the MEOK Ecosystem
This server is part of the MEOK AI Labs ecosystem — 300+ MCP servers for sovereign AI governance.
| Domain | Purpose |
|---|---|
| councilof.ai | EU AI Act compliance marketplace |
| safetyof.ai | AI safety & monitoring |
| meok.ai | Sovereign AI platform |
| cobolbridge.ai | Legacy modernization |
📜 License
MIT © CSOAI-ORG
Built with 💜 by MEOK AI Labs · UK Companies House 16939677
Each tier above the free self-host adds HMAC-signed attestations verifiable at `verify.meok.ai`. Linux Foundation governance on the A2A spine means EU regulated buyers can deploy without vendor-lock-in objections.💸 Try MEOK in 30 seconds — instant buy ladder
| Tier | Price | What you get | Stripe |
|---|---|---|---|
| Smoke test | £1 | Signed sample MCP-Hardening report + Article 50 PDF | https://buy.stripe.com/aFa7sNcgAdQS0ZT1Uc8k91t |
| Quick Kit | £9 | EU AI Act Article 50 implementation guide (C2PA + EU-Icon) | https://buy.stripe.com/aFa7sNcgAdQS0ZT1Uc8k91t |
| Founder Call | £29 | 30-min 1-on-1 with the founder | https://buy.stripe.com/aFa7sNcgAdQS0ZT1Uc8k91t |
Refundable. UK Stripe — VAT-clean. Builds on the 81-MCP MEOK fleet. Verify any signed report at https://meok.ai/verify.
Configuration
Add to your claude_desktop_config.json (Claude Desktop) or your MCP client config:
{
"mcpServers": {
"airspace-monitor-mcp": {
"command": "uvx",
"args": ["airspace-monitor-mcp"]
}
}
}
Or: pip install airspace-monitor-mcp then run the airspace-monitor-mcp command (stdio transport).
Examples
Once configured, ask your assistant, for example:
- "Use
check_airspaceto …" - "Use
get_no_fly_zonesto …" - "Use
get_drone_regulationsto …"
Recommended MCP Servers
How it compares
MCP integration for monitoring data, not a packaged agent skill or full flight-ops SaaS.
FAQ
Who is airspace-monitor-mcp for?
and small-team developers using Claude Code or Cursor who build products that depend on knowing controlled or restricted airspace.
When should I use airspace-monitor-mcp?
Use it during Operate monitoring work or late Build integrations when the agent should reason about airspace constraints alongside your code.
How do I add airspace-monitor-mcp to my agent?
Install the PyPI package airspace-monitor-mcp, register it as a stdio MCP server in your host config, and point the command at the published entrypoint from the CSOAI-ORG GitHub repo.