Skip to main content
This quickstart assumes you have Node.js 20+ and pnpm installed. See Installation for detailed prerequisites.

Get Started in 3 Steps

1

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.
2

Configure Environment

Copy the example environment file and edit with your credentials:
Edit .env with your preferred text editor. At minimum, set these values:
.env
Change default credentials before deploying to production. The AUTH_USER and AUTH_PASS are only used to seed the initial admin account on first run.
If your password contains #, either quote it or use base64 encoding:
3

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:
1

Open Agent Panel

Click Agents in the left navigation rail. You’ll see the agent management panel.
2

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.
3

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:
Response includes URLs for heartbeats, events, and token reporting:

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:
The task appears on the Kanban board and in the agent’s work queue. The agent receives notification via SSE if subscribed to /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