everything vs openagent
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | openagent by the-open-agent | |
|---|---|---|
| Stars | ★ 85,748 | ★ 4,760 |
| 30天用量 | — | — |
| 综合分 | 77 | 58 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | Go |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
openagent · 概述
OpenAgent 是一个全面的 AI 助手平台,支持 MCP 工具集成和代理自动化。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
openagent · 使用场景
- 自动化网络爬取和数据收集
- 构建具有领域知识的自定义 AI 助手
- 为办公自动化创建自主工作流
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-everythingopenagent · 安装
安装
快速安装
**macOS / Linux / WSL**
curl -fsSL https://raw.githubusercontent.com/the-open-agent/openagent/master/scripts/install.sh | bash**Windows (PowerShell)**
irm https://raw.githubusercontent.com/the-open-agent/openagent/master/scripts/install.ps1 | iex从源码构建
# 后端
go build
# 前端
cd web && yarn install && yarn start在 Claude Desktop 中集成 MCP
添加到您的 Claude Desktop 配置文件 config.json:
"mcpServers": {
"openagent": {
"command": "openagent的路径",
"args": ["--mcp"]
}
}