windows-automation
Installation
SKILL.md
Context
This plugin bundles the Windows MCP Server for Windows-only desktop automation. The server is strongest when you let Windows expose semantic UI information instead of guessing from screenshots.
Preferred workflow
- Use
window_managementto find or activate the target window. - Use
ui_find,ui_read,ui_click, andui_typefor normal controls. - Use
ui_read_tableto extract a grid, table, or details-view list into structured rows + headers in one call instead of scraping cells with repeatedui_read. - Use
file_savefor Save / Save As flows andfile_openfor Open flows instead of sending raw keyboard shortcuts. - Use
clipboard(get/set/clear) for fast bulk text IO — pair it with copy/paste hotkeys. - Use
ui_batchto run a multi-step sequence in one call, andui_macroto save that sequence by name and replay it later. - Only fall back to
screenshot_control,mouse_control, orkeyboard_controlwhen the UI Automation tree is missing or the target is a custom canvas.