computer-use-mcp
by domdomegg·★ 256·综合分 49
一个让Claude AI完全控制您电脑的MCP服务器,用于桌面自动化任务。
概述
computer-use-mcp是一个模型上下文协议(MCP)服务器,使Claude模型能够控制您的电脑,类似于Anthropic的官方computer use功能。它提供了简化的本地设置流程,允许AI模型与您的桌面环境进行交互。该服务器实现了与Anthropic的computer use指南几乎相同的功能,并进行了额外优化以优先使用键盘快捷键。它使用nut.js与计算机通信,并支持Claude Code、Claude Desktop、Cursor和Cline等多种客户端。
试试问 AI
装完之后,这里有 5 个你可以让 AI 做的事:
什么时候选它
当你需要 AI 代理与桌面应用程序交互、自动化桌面任务或控制缺乏 API 的传统软件时,选择这个。
什么时候不要选它
不要用于生产系统或敏感数据 - 它提供完全控制你电脑的能力,除了用户权限外没有安全边界。
此 server 暴露的工具
从 README 抽取出 1 个工具computer_useControl your computer through visual interface interactions
说明: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.
可对比工具
安装
安装
Claude Desktop
添加到您的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
创建.cursor/mcp.json文件:
{
"mcpServers": {
"computer-use": {
"command": "npx",
"args": ["-y", "computer-use-mcp"]
}
}
}Cline
通过市场安装或添加到MCP配置:
{
"mcpServers": {
"computer-use": {
"type": "stdio",
"command": "npx",
"args": ["-y", "computer-use-mcp"]
}
}
}FAQ
- 使用这个服务器安全吗?
- README中包含警告,指出模型经常出错且容易受到提示注入攻击。建议在沙盒用户账户中使用并密切监督,因为给予模型完全的电脑控制权可能造成严重损害。
- 哪些模型最适合使用此MCP服务器?
- 文档推荐使用擅长电脑使用的模型,特别是最新的Claude模型,以获得最佳效果。
computer-use-mcp 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。