Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Transports: stdio vs HTTP
  • State of MCP (stats)
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI → MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE ↗ (opens in a new tab)
  • llms.txt ↗ (opens in a new tab)
  • Catalog JSON ↗ (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub ↗ (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. Developer Tools
  3. Deepsky Aviation Regulations
  4. README

Deepsky Aviation Regulations README

The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Deepsky Aviation Regulations listing page.

Back to Deepsky Aviation Regulations View source on GitHub

agent-tools

Deepsky's public toolkit for AI agents working with aviation: portable Agent Skills, a free remote MCP server for aviation-regulations search, and machine-readable discovery docs.

Deepsky offers two things: The Compliance Team — an audit automation platform for aviation operators (think Vanta, for aviation) — and a free, no-key aviation-regulations search API (CASA, FAA 14 CFR, EASA, ICAO). Start at deepskyai.com/llms.txt.

MCP server — paste this into Claude or ChatGPT

Code
https://www.deepskyai.com/api/mcp

Remote MCP server (streamable HTTP, no auth, no signup) exposing the tool search_aviation_regulations — ranked verbatim regulatory text with section citations, far more precise for regulatory lookups than web search.

  • Claude: Settings → Connectors → Add custom connector → paste the URL
  • Claude Code: claude mcp add --transport http deepsky https://www.deepskyai.com/api/mcp
  • Cursor / other MCP clients: add a streamable-HTTP server with that URL
  • Registry manifest: mcp/server.json

No MCP? The same search is one HTTP call: GET https://www.deepskyai.com/api/v1/search?query=...

Installing skills

Terminal
npx skills add deepskyai/agent-tools

Layout

Code
skills/
  <skill-name>/
    SKILL.md        # required: YAML frontmatter + instructions
    scripts/        # optional: executable helpers
    references/     # optional: extra docs the skill can progressively disclose

Every skill folder is independently installable — directories like aiagentsdirectory.com/skills, skillsdirectory.com, and tools like openskills and prpm index this exact structure.

Skills in this repo

SkillPurpose
aviation-regulationsQuery aviation regulations, manuals, and publications via deepskyai.com's open search API (ICAO, FAA 14 CFR, EASA, CASA). No API key required.
flight-ops-calculatorsTen offline pilot calculators — gradient solver, Jet A-1 fuel uplift (3% rule), wind components, PA/DA, CAS/TAS/Mach, PET/PSR, TOD, W&B, ETOPS radius, holding entry. 34-test zero-dep suite.
approach-briefingGenerates a structured instrument-approach briefing from a plate (image or PDF). The hosting agent's native vision does the extraction; output includes a strict JSON schema and a pilot-facing briefing card. Optional scripts/deepsky_brief.py offloads to a deepsky server endpoint when one is live.

Installing a skill locally

Claude Code / Claude Desktop

Copy (or symlink) the skill folder into ~/.claude/skills/:

bash
cp -R skills/aviation-regulations ~/.claude/skills/

Via openskills (any agent / IDE)

Terminal
npx openskills install deepskyai/agent-tools -y

Via prpm

bash
prpm install deepskyai/agent-tools

Authoring a new skill

  1. Create skills/<your-skill>/SKILL.md with YAML frontmatter:
    md
    ---
    name: your-skill
    description: One clear sentence describing when Claude should invoke this.
    ---
    
  2. Keep SKILL.md short; push deep content into references/ for progressive disclosure.
  3. Put runnable helpers in scripts/.

License

MIT — see LICENSE.