ultimate_mcp_server vs open-computer-use
并排对比,帮你在这两个 MCP server 之间做选择。
ultimate_mcp_server by Dicklesworthstone | open-computer-use by Wide-Moat | |
|---|---|---|
| Stars | ★ 149 | ★ 74 |
| 30天用量 | — | — |
| 综合分 | 85 | 49 |
| 官方 | — | — |
| 分类 | AI / LLM 工具浏览器自动化本地文件系统 | 开发者工具效率工具AI / LLM 工具 |
| 实现语言 | Python | Python |
| 最近提交 | 2 个月前 | 本月 |
ultimate_mcp_server · 概述
一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。
open-computer-use · 概述
MCP 服务器为任何 LLM 提供包含浏览器、终端、代码执行和文档功能的 Docker 工作区。
ultimate_mcp_server · 使用场景
- 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
- 跨多个网站进行网页自动化和研究,通过浏览器控制
- 通过模型间的智能任务分配实现成本优化的 AI 工作流
open-computer-use · 使用场景
- AI 代理实时浏览器交互进行网页抓取和数据分析
- 自动化文档生成(Word、Excel、PDF)并进行专业格式设计
- 在隔离环境中进行代码开发和测试,具有完整的终端访问权限
ultimate_mcp_server · 安装
安装
- 克隆仓库:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- 安装依赖:
pip install -e .- 对于 Claude Desktop 集成,添加到 claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- 运行服务器:
python -m ultimate_mcp_serveropen-computer-use · 安装
安装
git clone https://github.com/Wide-Moat/open-computer-use.git
cd open-computer-use
cp .env.example .env
# 编辑 .env — 设置 OPENAI_API_KEY(或任何 OpenAI 兼容的提供商)
# 1. 启动 Computer Use 服务器(首次运行构建工作区镜像,约 15 分钟)
docker compose up --build
# 2. 启动 Open WebUI(在另一个终端中)
docker compose -f docker-compose.webui.yml up --build对于 MCP 客户端集成,自托管版本连接到 http://localhost:8081/mcp,托管版本使用 API key 连接到 https://api.yambr.com/mcp/computer_use。