@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.
What it provides
| Capability | Tools / Resources | Purpose |
|---|---|---|
| Knowledge | orbit_knowledge_topics, orbit_knowledge_read, orbit://knowledge/* | Module/controller/DI/GraphQL/microservices patterns, package map, security checklist |
| Scaffolding | orbit_scaffold_module, orbit_scaffold_graphql | Generate complete feature modules with validation, guards, and tests |
| Security review | orbit_security_review | Static checklist: missing validation, guards, rate limits, GraphQL limits, hardcoded secrets, unsanitized HTML |
| Prompts | build_orbit_feature, harden_graphql_api, migrate_from_nestjs | Ready-made task prompts for agents |
Install
bash
bun add @galaxy-stack/orbit-mcpConnect 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.
