| title | Development Guide |
|---|---|
| description | Complete development documentation for DeployStack - the first MCP-as-a-Service platform with satellite infrastructure and cloud control plane. |
Welcome to the DeployStack development documentation! DeployStack eliminates MCP adoption friction by transforming complex installations into simple URL configurations through managed satellite infrastructure.
DeployStack implements an MCP-as-a-Service architecture that eliminates installation friction:
- Frontend: Vue 3 + TypeScript web application (cloud.deploystack.io) for team management and configuration
- Backend: Fastify-based cloud control plane handling authentication, teams, and satellite coordination
- Satellite Infrastructure: Managed MCP servers accessible via HTTPS URLs - no installation required
- Shared: Common utilities and TypeScript types used across all services
- Dual Deployment: Global satellites (DeployStack-managed) and team satellites (customer-deployed)
<Card icon="server" href="/development/backend" title="Backend Development"
Fastify cloud control plane with Drizzle ORM, JWT authentication, team management, and satellite coordination APIs.
<Card icon="cloud" href="/development/satellite" title="Satellite Development"
MCP-as-a-Service infrastructure with global satellites, team satellites, zero-installation access, and enterprise-grade security.
- Node.js 18 or higher
- npm 8 or higher
- Git for version control
- Docker (for local PostgreSQL)
This starts PostgreSQL 18 in Docker with default credentials (`deploystack`/`deploystack`).
Backend runs at http://localhost:3000
Frontend runs at http://localhost:5173
Satellite runs at http://localhost:3001
<Info>
To get a registration token, go to Admin → Satellites → Pairing in the DeployStack UI after completing the setup wizard.
</Info>
- Choose Your Service: Select frontend, backend, or satellite based on your contribution area
- Set Up Environment: Follow the specific setup guides for your chosen service
- Understand Architecture: Review how services interact (Frontend ↔ Backend ↔ Satellite)
- Make Changes: Implement features following established patterns (Vue SFC for frontend, plugins for backend, managed services for satellite)
- Test: Run comprehensive test suites for your service
- Submit: Create pull requests following our contribution guidelines
deploystack/
├── services/
│ ├── frontend/ # Vue 3 frontend application
│ │ ├── src/
│ │ ├── public/
│ │ └── package.json
│ ├── backend/ # Fastify backend API
│ │ ├── src/
│ │ ├── plugins/
│ │ └── package.json
│ ├── satellite/ # Satellite edge worker (like GitHub Actions runner)
│ │ ├── src/
│ │ ├── config/
│ │ └── package.json
│ └── shared/ # Shared utilities and types
│ └── package.json
├── docs/ # Documentation
└── docker-compose.yml # Development environment- Vue 3 with Composition API and Single File Components (SFC)
- TypeScript for type safety throughout the application
- Vite for fast HMR and optimized builds
- TailwindCSS with shadcn-vue component library
- Direct fetch() API calls (no axios or API client libraries)
- Vue I18n for multi-language support
- Fastify for high-performance cloud control plane
- TypeScript with full type safety
- Drizzle ORM with PostgreSQL
- Plugin System with isolated routes (
/api/plugin/<id>/) - Role-Based Access Control with session management
- Node.js edge worker runtime (like GitHub Actions runner)
- HTTP Proxy + stdio Communication for dual MCP server deployment (external HTTP endpoints and local subprocesses)
- OAuth 2.1 Resource Server with Backend token introspection
- Team Isolation using Linux namespaces, cgroups, and resource jailing
- Dual Deployment Model global satellites (DeployStack-managed) and team satellites (customer-deployed)
- Process Management with automatic cleanup, selective restart, and lifecycle management
DeployStack provides managed MCP infrastructure through:
- Zero Installation Friction: Transform complex MCP setup into simple URL configuration
- Managed Satellite Infrastructure: Global satellites and enterprise team satellites
- Enterprise Progression: Freemium satellites → paid tiers → team satellites
- Universal Compatibility: Supports MCP servers in any language via managed infrastructure
- Type Safety: TypeScript throughout the stack
- Testing: Comprehensive test coverage
- Documentation: Clear, up-to-date documentation
- Security: Built-in security best practices
We welcome contributions to DeployStack! Key areas include:
- Frontend: Vue components, UI/UX improvements, satellite management features
- Backend: API endpoints, satellite coordination, JWT authentication
- Satellite: Managed infrastructure, team isolation, deployment patterns
- Documentation: Guides, examples, API documentation
- MCP Servers: New satellite-hosted MCP server integrations
- Security: Enhanced team isolation, enterprise deployment features
- GitHub: deploystackio/deploystack
- Issues: Report bugs and request features
For detailed development guides, choose your area of interest from the cards above. Each section contains comprehensive documentation for getting started, best practices, and advanced topics.