Skip to content
VS Code

computer use omni for VS Code

io.github.jason26214/computer-use-omni

A 1:1 replica of Claude Desktop's computer-use tool surface, for Windows and the Claude Code CLI.

client:VS Code transport:stdio runtime:pypi

Install computer use omni in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "computer-use-max-pixels",
      "description": "COMPUTER_USE_MAX_PIXELS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "computer-use-masking",
      "description": "COMPUTER_USE_MASKING",
      "password": true
    },
    {
      "type": "promptString",
      "id": "computer-use-enforce-foreground",
      "description": "COMPUTER_USE_ENFORCE_FOREGROUND",
      "password": true
    },
    {
      "type": "promptString",
      "id": "computer-use-dev",
      "description": "COMPUTER_USE_DEV",
      "password": true
    }
  ],
  "servers": {
    "computer-use-omni": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "computer-use-omni"
      ],
      "env": {
        "COMPUTER_USE_MAX_PIXELS": "${input:computer-use-max-pixels}",
        "COMPUTER_USE_MASKING": "${input:computer-use-masking}",
        "COMPUTER_USE_ENFORCE_FOREGROUND": "${input:computer-use-enforce-foreground}",
        "COMPUTER_USE_DEV": "${input:computer-use-dev}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

computer use omni in other clients