-
Notifications
You must be signed in to change notification settings - Fork 0
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
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-mcpOr 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 listAdd 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 = 60The 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.
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/mcpA 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.
lowlevel-computer-use-mcp · MIT License ·
Getting started
Reference
Features
More