agentor vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
agentor by CelestoAI | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 180 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具沟通协作 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
agentor · 概述
Agentor 是一个用于构建和部署 AI 代理的综合性框架,具备 MCP 服务器功能、工具和代理间通信能力。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
agentor · 使用场景
- 构建具有 FastAPI 兼容性的自定义 MCP 服务器
- 创建和部署具有专业技能的 AI 代理
- 实现代理间通信协议
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
agentor · 安装
pip install agentor对于 Claude Desktop 集成,将以下内容添加到您的 claude_desktop_config.json 中:
{
"mcpServers": {
"agentor": {
"command": "python",
"args": ["-m", "agentor.mcp"]
}
}
}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