Fixes DPI coordinate scaling for Windows desktop automation MCP servers.
Fixes DPI coordinate scaling for Windows desktop automation MCP servers. Exposed over MCP by the precision mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.
Windows DPI scaling silently breaks every MCP tool that clicks, types, or hovers on the desktop. precision-desktop detects and corrects the coordinate mismatch so your AI agent's clicks actually land where they should.
Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.
Everything the assistant can do here goes through one of these:
calibrate — Compute DPI scale factors from 2+ reference points with known physical and logical coordinatescalibrate_verify — Mark calibration as verified after confirming a test click landed correctlyget_calibration — Read current calibration state (scale factors, verification status, age)convert_coordinates — Convert a coordinate pair between physical and logical systemsfind_ui_element — Find a single UI element by name using Windows UI Automation. Returns physical coordinatesfind_all_ui_elements — Find all UI elements matching a name. Returns list with physical coordinateslist_ui_elements — List all named interactive elements (buttons, text fields, etc.) in a windowfind_window — Find a window handle (hwnd) by title substringhealth_check — Run environment checks: calibration freshness, UI Automation, companion MCP statuspatch_status — Check which DPI-aware patches are applied to the companion MCPVerification — After calibration, the agent should: 1. Use convert_coordinates to convert a known logical position to physical 2. Use Move-Tool to move the cursorDiscovery — Don't know the element name? Use list_ui_elements to see what's available:You will need one environment variable: WINDOWS_MCP_PATH. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Precision's toolset — calibrate, calibrate_verify, get_calibration and 9 more — is a fair guide to whether it matches your workflow. It is maintained by ikoskela; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| calibrate | Compute DPI scale factors from 2+ reference points with known physical and logical coordinates |
| calibrate_verify | Mark calibration as verified after confirming a test click landed correctly |
| get_calibration | Read current calibration state (scale factors, verification status, age) |
| convert_coordinates | Convert a coordinate pair between physical and logical systems |
| find_ui_element | Find a single UI element by name using Windows UI Automation. Returns physical coordinates |
| find_all_ui_elements | Find all UI elements matching a name. Returns list with physical coordinates |
| list_ui_elements | List all named interactive elements (buttons, text fields, etc.) in a window |
| find_window | Find a window handle (hwnd) by title substring |
| health_check | Run environment checks: calibration freshness, UI Automation, companion MCP status |
| patch_status | Check which DPI-aware patches are applied to the companion MCP |
| Verification | After calibration, the agent should: 1. Use convert_coordinates to convert a known logical position to physical 2. Use Move-Tool to move the cursor there 3. Confirm the cursor is on the expected target 4. Call calibrate_ |
| Discovery | Don't know the element name? Use list_ui_elements to see what's available: |
| Variable | Description | Required |
|---|---|---|
| WINDOWS_MCP_PATH | Filesystem location the server is allowed to use. | Optional |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.