Skip to content

Registering Clients

Claude edited this page Jun 30, 2026 · 1 revision

Registering Clients

Replace the path below with wherever you cloned the repo. The same launch command works for every client:

uv run --directory <repo> lowlevel-computer-use-mcp

Claude Code

Register at user scope (one line):

claude mcp add lowlevel-computer-use --scope user -- uv run --directory "C:\path\to\lowlevel-computer-use-mcp" lowlevel-computer-use-mcp

Or add it to ~/.claude.json under mcpServers:

{
  "mcpServers": {
    "lowlevel-computer-use": {
      "command": "uv",
      "args": ["run", "--directory", "C:\\path\\to\\lowlevel-computer-use-mcp", "lowlevel-computer-use-mcp"]
    }
  }
}

Verify it connects:

claude mcp list

Codex (OpenAI Codex CLI)

Add this block to ~/.codex/config.toml:

[mcp_servers.lowlevel-computer-use]
command = "uv"
args = ["run", "--directory", "C:\\path\\to\\lowlevel-computer-use-mcp", "lowlevel-computer-use-mcp"]
startup_timeout_sec = 60

YOLO mode (auto-approve, no permission prompts)

The GUI installer enables this by default. To do it manually for Claude Code, add a wildcard allow rule for this server's tools to ~/.claude/settings.json:

{ "permissions": { "allow": ["mcp__lowlevel-computer-use__*"] } }

For Codex, set the global approval policy in ~/.codex/config.toml:

approval_policy = "never"

⚠️ YOLO means every tool runs without asking — including destructive ones (kill_process, run_command, run_command_as_admin, wsl_destroy). Only enable it if you trust the agents driving this server.

Remote (HTTP) registration

If you run the server as an always-on HTTP service (see Run as Admin and Boot Startup), connect a client to it as a remote MCP server:

claude mcp add --transport http lowlevel-computer-use-boot http://127.0.0.1:8765/mcp

Agent skill

A companion skill (skills/lowlevel-computer-use/) documents every feature for agents. Install it for Claude Code:

cp -r skills/lowlevel-computer-use ~/.claude/skills/

After any change here, restart the client so it respawns the server.

Clone this wiki locally