Skip to content
VS Code

precision desktop for VS Code

io.github.ikoskela/precision-desktop

Fixes DPI coordinate scaling for Windows desktop automation MCP servers.

client:VS Code transport:stdio runtime:pypi

Install precision desktop in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "windows-mcp-path",
      "description": "WINDOWS_MCP_PATH",
      "password": true
    }
  ],
  "servers": {
    "precision-desktop": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "precision-desktop"
      ],
      "env": {
        "WINDOWS_MCP_PATH": "${input:windows-mcp-path}"
      }
    }
  }
}

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

precision desktop in other clients