Windows desktop control for AI agents: screen, UI Automation, input, processes, files, shell.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Full Windows desktop access for Claude and other MCP clients
See the screen, read and drive real application UIs, manage windows and
processes, work with files, and run shell commands β all behind a tiered
permission model with audit logging.
Most desktop automation servers hand the model a screenshot and a click(x, y)
tool, which breaks the moment a window moves. This one is built around the
things that actually make Windows automation reliable:
uia_snapshot reads an application's accessibility
tree, so Claude can act on "the Save button" rather than on coordinates that
go stale. uia_invoke and uia_set_value drive controls directly.GetWindowRect reports 1351px where the true edge is 2641px.window_focus verifies the foreground actually changed
and says so when Windows refuses. Errors explain what to do next rather than
surfacing an HRESULT.Download winctl.mcpb from the
latest release and
double-click it. Claude Desktop installs it and exposes the permission profile,
allowed folders and confirmation settings in its UI.
Install globally first, then register the command:
Add --scope user to the second command to make it available in every project
rather than just the current one.
Don't use
npx -y @sitharaj88/winctlhere. It works, but WinCtl depends on prebuilt native binaries (sharp, koffi), and npx re-resolves them on every launch β around 18 seconds versus 3 for a global install. MCP clients give up long before that and reportConnection closed.
If winctl isn't on your PATH, point at the entry point directly β on Windows
a global npm install lands in %APPDATA%\npm\node_modules:
Claude Desktop's config lives at
%APPDATA%\Claude\claude_desktop_config.json.
Every tool belongs to exactly one tier. Tools in a disabled tier are never registered, so the model cannot see them, attempt them, or spend context reading their descriptions.
| Tier | What it allows |
|---|---|
observe | Screenshots, window/monitor enumeration, UI trees, system and process info, file reads |
interact | Mouse and keyboard input, UI Automation invokes, window focus/move/close, clipboard writes |
filesystem | Creating, modifying, moving and deleting files |
manage | Starting and terminating processes, controlling services |
shell | Arbitrary PowerShell and cmd execution |
Profiles bundle these:
| Profile | Tiers |
|---|---|
readonly | observe |
standard (default) | observe, interact, filesystem |
full | all five |
| Variable | Default | Purpose |
|---|---|---|
WINCTL_PROFILE | standard | readonly, standard or full |
WINCTL_TIERS | β | Explicit tier list, overrides the profile |
WINCTL_ALLOWED_PATHS | β | Semicolon-separated folders file tools may touch |
WINCTL_DENIED_PATHS | β | Extra folders to refuse |
WINCTL_CONFIRM_DESTRUCTIVE | true | Ask before destructive actions |
WINCTL_AUDIT_LOG | %LOCALAPPDATA%\winctl\audit.jsonl | Audit log path |
WINCTL_AUDIT_DISABLED | false | Turn auditing off |
WINCTL_MAX_IMAGE_WIDTH | 1600 | Screenshot downscale width |
WINCTL_COMMAND_TIMEOUT_MS | 60000 | Shell/PowerShell time limit |
An unrecognised profile name fails closed to readonly with a warning on
stderr, rather than guessing what you meant and possibly granting write access.
| Tool | Tier | Description |
|---|---|---|
screen_list_monitors | observe | Displays with position, resolution and DPI scale |
screen_capture | observe | Screenshot a monitor or the whole virtual desktop |
screen_capture_region | observe | Screenshot a rectangular region |
screen_capture_window | observe | Screenshot one window, even if overlapped |
screen_list_capturable_windows | observe | Windows available for individual capture |
| Tool | Tier | Description |
|---|---|---|
window_list | observe | Visible top-level windows with stable ids and bounds |
window_get_active | observe | The window with keyboard focus |
window_get_desktop_info | observe | Virtual desktop bounds and cursor position |
window_focus | interact | Raise and focus a window, with verification |
window_set_state | interact | Minimize, maximize, restore, hide, show |
window_move | interact | Move and resize (un-maximizes first) |
window_close | interact | Ask a window to close |
| Tool | Tier | Description |
|---|---|---|
input_move_mouse | interact | Move the cursor |
input_click | interact | Click, right-click or double-click |
input_drag | interact | Drag between two points, interpolated |
input_scroll | interact | Scroll vertically or horizontally |
input_type | interact | Type Unicode text, or paste when long |
input_press_keys | interact | Chords such as ctrl+shift+escape |
input_key_hold | interact | Hold or release a key |
| Tool | Tier | Description |
|---|---|---|
uia_snapshot | observe | Read an application's accessibility tree |
uia_find | observe | Find controls by name, id or type |
uia_invoke | interact | Click, toggle, expand, select or focus a control |
uia_set_value | interact | Set an editable control's text directly |
| Tool | Tier | Description |
|---|---|---|
system_info | observe | OS, CPU, memory, disks, network, battery, GPU |
system_list_services | observe | Services with state and startup type |
system_list_installed_apps | observe | Installed applications |
system_notify | interact | Windows toast notification |
system_control_service | manage | Start, stop or restart a service |
process_list | observe | Processes with CPU and memory usage |
process_start | manage | Launch an application or open a document |
process_kill | manage | Terminate a process |
| Tool | Tier | Description |
|---|---|---|
file_known_folders | observe | Standard Windows paths and current access limits |
file_list | observe | Directory listing with sizes and timestamps |
file_read | observe | Read text or base64 content |
file_search | observe | Find files by name pattern and content |
file_write | filesystem | Write, append or create |
file_manage | filesystem | Copy, move, delete, mkdir |
clipboard_read | observe | Read clipboard text |
clipboard_write | interact | Set clipboard text |
shell_run | shell | Run a PowerShell or cmd command |
40 tools total. Every one carries title, readOnlyHint and
destructiveHint annotations.
"Open Notepad, write my meeting notes into it and save to Documents."
Claude will typically:
process_start β launch Notepadwindow_list β find the window and its owning process idwindow_focus β make sure keystrokes land thereinput_type β paste the notes via the clipboardinput_press_keys ctrl+s, then uia_set_value on the filename fieldscreen_capture_window β confirm the result visuallyNo reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/winctl)<a href="https://allmcps.com/mcp/winctl"><img src="https://allmcps.com/api/badge/winctl?style=directory" alt="WinCtl on AllMCPs" /></a>