Run any coding agent in a Docker sandbox with your rules, skills and MCP servers already inside. Git worktree isolation, editor attach over SSH, live code graph.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"ohmyharness": {
"command": "cargo",
"args": [
"run",
"--",
"ohmyharness"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add ohmyharness cargo run -- ohmyharness
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"ohmyharness": {
"command": "cargo",
"args": [
"run",
"--",
"ohmyharness"
]
}
}
}
📋 Copy