Windows Desktop Automation
A Model Context Protocol server that wraps AutoIt functionality, enabling LLMs to automate Windows desktop tasks including mouse/keyboard operations, window management, and UI control interactions.
What is Windows Desktop Automation?
Windows Desktop Automation is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to model context protocol server that wraps autoit functionality, enabling llms to automate windows desktop tasks including mouse/keyboard operations, window management, and ui control interactions.
A Model Context Protocol server that wraps AutoIt functionality, enabling LLMs to automate Windows desktop tasks including mouse/keyboard operations, window management, and UI control interactions.
This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- A Model Context Protocol server that wraps AutoIt functional
Use Cases
Maintainer
Works with
Installation
Manual Installation
npx mcp-windows-desktop-automationConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use Windows Desktop Automation
The MCP Windows Desktop Automation server wraps AutoIt's comprehensive Windows GUI automation library and exposes it to AI assistants through the Model Context Protocol. It provides tools for mouse and keyboard operations, window management, UI control interactions, process management, file access, and screenshot capture — all callable from natural language. Developers and automation engineers use it to let AI assistants drive Windows desktop applications, fill forms, script repetitive tasks, and monitor UI state without writing AutoIt scripts by hand.
Prerequisites
- Windows operating system (AutoIt is Windows-only)
- Node.js 18 or higher with npm
- AutoIt v3 installed (https://www.autoitscript.com/site/autoit/downloads/)
- Git for cloning the repository
- An MCP-compatible client such as Claude Desktop
Install AutoIt
Download and install AutoIt v3 from the official website. The MCP server wraps AutoIt's COM interface, so AutoIt must be installed before building the server.
Clone the repository
Clone the MCP Windows Desktop Automation repository from GitHub.
git clone https://github.com/mario-andreschak/mcp-windows-desktop-automation.git
cd mcp-windows-desktop-automationInstall dependencies and build
Install the Node.js packages and compile the TypeScript source.
npm install
npm run buildStart the server
Run the server in stdio mode (default) for use with Claude Desktop. Use --transport=websocket and --port if you prefer a WebSocket transport for remote clients.
npm start
# Or with WebSocket transport:
npm start -- --transport=websocket --port=3000Add the server to Claude Desktop
Register the built server in claude_desktop_config.json so Claude Desktop launches it automatically.
{
"mcpServers": {
"windows-automation": {
"command": "node",
"args": ["C:\\path\\to\\mcp-windows-desktop-automation\\dist\\index.js"]
}
}
}Windows Desktop Automation Examples
Client configuration
Claude Desktop config to launch the MCP Windows Desktop Automation server. Update the path to match your build output location.
{
"mcpServers": {
"windows-automation": {
"command": "node",
"args": ["C:\\path\\to\\mcp-windows-desktop-automation\\dist\\index.js"]
}
}
}Prompts to try
These prompts exercise the mouse, keyboard, window, and screenshot capabilities of the server.
- "Take a screenshot of the current screen and describe what is open"
- "Find the window titled 'Notepad' and bring it to the front"
- "Type 'Hello World' into the currently active text field"
- "Click the OK button in the dialog box that is currently open"
- "Start the Calculator application and compute 1234 times 5678"
- "Fill in the login form on the open application with username 'admin' and submit it"Troubleshooting Windows Desktop Automation
Server fails to start with 'AutoIt COM object not found' error
Ensure AutoIt v3 is installed from autoitscript.com and that the AutoIt COM server is registered. You can re-register it by running 'AutoIt3.exe /regserver' as Administrator from the AutoIt installation directory.
Window management tools cannot find the target window
AutoIt window matching is case-sensitive by default. Verify the exact window title by using the 'take a screenshot' prompt first to see what windows are visible, then use the exact title string in subsequent prompts.
Claude Desktop shows the server as disconnected immediately after startup
Check that Node.js 18+ is installed and on your PATH. Run 'node dist/index.js' manually from the project directory to see any startup errors. Ensure npm run build completed successfully before adding the server to the config.
Frequently Asked Questions about Windows Desktop Automation
What is Windows Desktop Automation?
Windows Desktop Automation is a Model Context Protocol (MCP) server that model context protocol server that wraps autoit functionality, enabling llms to automate windows desktop tasks including mouse/keyboard operations, window management, and ui control interactions. It connects AI assistants to external tools and data sources through a standardized interface.
How do I install Windows Desktop Automation?
Follow the installation instructions on the Windows Desktop Automation GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.
Which AI clients work with Windows Desktop Automation?
Windows Desktop Automation works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is Windows Desktop Automation free to use?
Yes, Windows Desktop Automation is open source and available under the MIT License license. You can use it freely in both personal and commercial projects.
Windows Desktop Automation Alternatives — Similar Developer Tools Servers
Looking for alternatives to Windows Desktop Automation? Here are other popular developer tools servers you can use with Claude, Cursor, and VS Code.
Ecc
★ 188.2kThe agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Javaguide
★ 155.8kJava 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Gemini CLI
★ 104.5kA secure MCP server that wraps the Google Gemini CLI, allowing clients to query Gemini models using local OAuth sessions without requiring an API key. It provides tools for model interaction and diagnostics with built-in protection against command in
Awesome MCP Servers
★ 87.3k⭐ Curated list of Model Context Protocol (MCP) servers - tools that extend Claude Desktop, Cursor, Windsurf, and other MCP clients with custom capabilities.
MCP Servers
★ 86.0kModel Context Protocol Servers
CC Switch
★ 77.5kA cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io
Browse More Developer Tools MCP Servers
Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up Windows Desktop Automation in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use Windows Desktop Automation?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.