Orchestrate remote Claude Code sessions across machines via WebSocket. Dispatch prompts, stream results, fan out work — all from your terminal or via MCP.
# Initialize config and auth token
coord init
# Start the coordinator server
coord serve
# Connect a remote agent
coord agent --url wss://your-host:8080 --name worker-1
# Dispatch a task and stream the output
coord run "Refactor the auth module" --on worker-1
# Send the same prompt to multiple agents in parallel
coord fan-out "Add unit tests to all handlers" --on agent-a,agent-b,agent-c
# List all tasks
coord tasks
# Attach to a running task and stream output
coord attach <task-id>
# Get the result of a completed task
coord result <task-id>
Full CLI reference with all 25+ commands available on GitHub.
Full HTTP API for programmatic integration. All endpoints require Bearer token or API key authentication.
POST /api/dispatch — Dispatch a taskGET /api/tasks — List tasksGET /api/agents — List connected agentsPOST /api/users — User managementPOST /api/orgs — Org managementGET /metrics — Prometheus metricsUse Clawd Coordinator as a tool inside Claude Code via the Model Context Protocol.
coord mcp
Exposes 4 tools for task dispatch, agent listing, task querying, and status reporting. Integrates with Claude Code's native MCP tool system.