Computer Use for VS Code
io.github.hightemp/go-computer-use-mcp-server
Local MCP server for desktop automation: mouse, keyboard, screen, windows, and processes.
client:VS Code
transport:stdio
runtime:npm
Install Computer Use in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "display",
"description": "DISPLAY",
"password": true
},
{
"type": "promptString",
"id": "xauthority",
"description": "XAUTHORITY",
"password": true
}
],
"servers": {
"go-computer-use-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"go-computer-use-mcp-server"
],
"env": {
"DISPLAY": "${input:display}",
"XAUTHORITY": "${input:xauthority}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs