MCP server
by tanob
Automate desktop tasks using RobotJS for screen capture, keyboard, and mouse control—seamless integration with power aut
Controls your desktop programmatically by capturing screenshots, moving the mouse, clicking, and typing text. Lets AI assistants interact directly with any desktop application.
Desktop Automation is a community-built MCP server published by tanob that provides AI assistants with tools and capabilities via the Model Context Protocol. Automate desktop tasks using RobotJS for screen capture, keyboard, and mouse control—seamless integration with power aut It is categorized under developer tools.
You can install Desktop Automation in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Desktop Automation is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
We wired Desktop Automation into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
I recommend Desktop Automation for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Desktop Automation is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Desktop Automation is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Useful MCP listing: Desktop Automation is the kind of server we cite when onboarding engineers to host + tool permissions.
We evaluated Desktop Automation against two servers with overlapping tools; this profile had the clearer scope statement.
Strong directory entry: Desktop Automation surfaces stars and publisher context so we could sanity-check maintenance before adopting.
We evaluated Desktop Automation against two servers with overlapping tools; this profile had the clearer scope statement.
Useful MCP listing: Desktop Automation is the kind of server we cite when onboarding engineers to host + tool permissions.
Desktop Automation has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
showing 1-10 of 70
A Model Context Protocol server that provides desktop automation capabilities using RobotJS and screenshot capabilities. This server enables LLMs to control mouse movements, keyboard inputs, and capture screenshots of the desktop environment.
Here's how to configure Claude Desktop to use the MCP Desktop Automation server:
{
"mcpServers": {
"desktop-automation": {
"command": "npx",
"args": ["-y", "mcp-desktop-automation"]
}
}
}
This server requires system-level permissions to:
When first running Claude Desktop with this server, you may need to grant these permissions in your operating system's security settings.
While this server works with various MCP clients, it has been primarily tested with Claude Desktop.
Important: The current implementation has a 1MB response size limit. For screen captures, this means:
get_screen_size
screen_capture
keyboard_press
key (string, required): Key to press (e.g., 'enter', 'a', 'control')modifiers (array of strings, optional): Modifier keys to hold while pressing the key. Possible values: "control", "shift", "alt", "command"keyboard_type
text (string, required): Text to typemouse_click
button (string, optional, default: "left"): Mouse button to click. Possible values: "left", "right", "middle"double (boolean, optional, default: false): Whether to perform a double clickmouse_move
x (number, required): X coordinatey (number, required): Y coordinateThe server provides access to screenshots:
Screenshot List (screenshot://list)
Screenshot Content (screenshot://{id})
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.