Skip to content
VS Code

omni computer use for VS Code

io.github.jason26214/omni-computer-use

Windows MCP server replicating Anthropic's computer-use tool surface, for any MCP client.

client:VS Code transport:stdio runtime:pypi

Install omni computer use 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": {
    "omni-computer-use": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "omni-computer-use-mcp"
      ],
      "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

omni computer use in other clients