This quickstart assumes you have Node.js 20+ and pnpm installed. See Installation for detailed prerequisites.
Get Started in 3 Steps
Clone and Install
Clone the repository and install dependencies:
Mission Control requires pnpm for dependency management. Install with
npm install -g pnpm or enable corepack with corepack enable.Configure Environment
Copy the example environment file and edit with your credentials:Edit If your password contains
.env with your preferred text editor. At minimum, set these values:.env
#, either quote it or use base64 encoding:Start the Server
Launch the development server:Open your browser to http://localhost:3000 and login with your
AUTH_USER and AUTH_PASS credentials.The dev server binds to
127.0.0.1:3000 by default. Production builds use 0.0.0.0:3005. See Installation for production configuration.Register Your First Agent
Once logged in, register an agent to start tracking sessions and tasks:Create Agent via API
Use the API to register your first agent:Response:
The agent appears immediately in the dashboard via Server-Sent Events (SSE). No page refresh required.
View in Dashboard
Return to the Agents panel in your browser. Your new agent appears in the list with status badge, role, and task statistics.Click on the agent to view details including:
- Session key and configuration
- Task assignments and history
- Heartbeat status and last seen timestamp
- SOUL content (if configured)
Connect a CLI Tool (Optional)
Mission Control supports direct CLI integration without requiring a gateway. Connect tools like Claude Code or custom agents:Send Heartbeats
Keep the connection alive by sending heartbeats every 30 seconds:Heartbeats can include optional token usage for inline cost tracking. Mission Control automatically calculates costs based on current model pricing.
Create a Task
Create and assign tasks to agents:/api/events.
View the Dashboard
Explore Mission Control’s 28 panels:Overview
System status, active agents, and key metrics
Tasks
Kanban board with drag-and-drop workflow
Agents
Agent fleet management and lifecycle
Sessions
Active gateway sessions and connections
Tokens
Usage tracking and cost analysis
Memory
Agent memory browser and search
Logs
Centralized log viewer with filtering
Chat
Agent communication interface
Pipelines
Workflow orchestration and templates
Next Steps
Installation Guide
Production deployment and environment configuration
API Reference
Complete API documentation for all 66 endpoints
Agent Integration
Connect OpenClaw, Claude Code, and custom agents
Security
Authentication, authorization, and security best practices