computer-use-mcp
by domdomegg·★ 256·Score 49
An MCP server that gives Claude AI complete control of your computer for desktop automation tasks.
Overview
computer-use-mcp is a Model Context Protocol server that enables Claude models to control your computer similarly to Anthropic's official computer use feature. It provides a simplified setup process for local use, allowing AI models to interact with your desktop environment. The server implements near-identical functionality to Anthropic's computer use guide with additional optimizations to prefer keyboard shortcuts. It uses nut.js to communicate with the computer and includes support for various clients like Claude Code, Claude Desktop, Cursor, and Cline.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this when you need an AI agent to interact with desktop applications, automate desktop tasks, or control legacy software that lacks APIs.
When NOT to choose this
Don't choose this for production systems or sensitive data - it gives complete control of your computer with no safety boundaries beyond user permissions.
Tools this server exposes
1 tool extracted from the READMEcomputer_useControl your computer through visual interface interactions
Note: The tool name is inferred from the server name and description, though no explicit tool documentation is provided in the README. The server appears to implement computer control functionality similar to Anthropic's computer use API.
Comparable tools
Installation
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"computer-use": {
"command": "npx",
"args": [
"-y",
"computer-use-mcp"
]
}
}
}Claude Code
claude mcp add --scope user --transport stdio computer-use -- npx -y computer-use-mcpCursor
Create .cursor/mcp.json:
{
"mcpServers": {
"computer-use": {
"command": "npx",
"args": ["-y", "computer-use-mcp"]
}
}
}Cline
Via marketplace or add to MCP configuration:
{
"mcpServers": {
"computer-use": {
"type": "stdio",
"command": "npx",
"args": ["-y", "computer-use-mcp"]
}
}
}FAQ
- Is this safe to use?
- The README includes a warning that models make frequent mistakes and are vulnerable to prompt injections. It's recommended to use this in a sandboxed user account and supervise closely, as giving a model complete computer control could cause significant damage.
- What models work best with this MCP server?
- The documentation recommends using models good at computer use, particularly the latest Claude models, for best results.
Compare computer-use-mcp with
Last updated · Auto-generated from public README + GitHub signals.