MCP Catalogs
首页

everything vs open-computer-use

并排对比,帮你在这两个 MCP server 之间做选择。

everything
by modelcontextprotocol
open-computer-use
by Wide-Moat
Stars★ 85,748★ 74
30天用量
综合分7749
官方
分类
开发者工具AI / LLM 工具其它
开发者工具效率工具AI / LLM 工具
实现语言TypeScriptPython
最近提交本月本月

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

open-computer-use · 概述

MCP 服务器为任何 LLM 提供包含浏览器、终端、代码执行和文档功能的 Docker 工作区。

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

open-computer-use · 使用场景

  • AI 代理实时浏览器交互进行网页抓取和数据分析
  • 自动化文档生成(Word、Excel、PDF)并进行专业格式设计
  • 在隔离环境中进行代码开发和测试,具有完整的终端访问权限

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

open-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

对比内容由 README + GitHub 公开数据自动生成,定期更新。