Skip to content

@galaxy-stack/orbit-mcp

Model Context Protocol server that gives AI coding agents first-class knowledge of Orbit: framework patterns, code scaffolding, and security review — through the Model Context Protocol.

npm version

What it provides

CapabilityTools / ResourcesPurpose
Knowledgeorbit_knowledge_topics, orbit_knowledge_read, orbit://knowledge/*Module/controller/DI/GraphQL/microservices patterns, package map, security checklist
Scaffoldingorbit_scaffold_module, orbit_scaffold_graphqlGenerate complete feature modules with validation, guards, and tests
Security revieworbit_security_reviewStatic checklist: missing validation, guards, rate limits, GraphQL limits, hardcoded secrets, unsanitized HTML
Promptsbuild_orbit_feature, harden_graphql_api, migrate_from_nestjsReady-made task prompts for agents

Install

bash
bun add @galaxy-stack/orbit-mcp

Connect to your AI agent

json
{
  "mcpServers": {
    "orbit": {
      "command": "bunx",
      "args": ["@galaxy-stack/orbit-mcp"]
    }
  }
}

Or via Smithery (hosted):

json
{
  "mcpServers": {
    "orbit": {
      "url": "https://server.smithery.ai/@galaxy-stack/orbit-mcp/mcp",
      "config": {}
    }
  }
}

Companion skill

skills/orbit-framework/SKILL.md is a portable skill definition covering the same guidance for agents that prefer skills over MCP. Published on Smithery as galaxy-stack/orbit-framework.

Protocol

Implements MCP 2025-03-26 over stdio (newline-delimited JSON-RPC 2.0): initialize, ping, tools/list, tools/call, resources/list, resources/read, prompts/list, prompts/get. Zero runtime dependencies — runs under Bun or Node >= 18.

Released under the MIT License.