mcp-agent vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-agent by lastmile-ai | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 8,325 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 59 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 4 个月前 | 本月 |
mcp-agent · 概述
一个全面的 Python 框架,使用模型上下文协议和简单的工作流模式构建有效代理。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-agent · 使用场景
- 构建使用 MCP 服务器与文件系统、Web API 和其他系统交互的复杂多步骤代理
- 使用 Temporal 创建持久的、有状态的代理以处理生产工作负载
- 将代理部署为可集成到其他系统中的 MCP 服务器
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp-agent · 安装
安装
使用 pip 安装:
pip install mcp-agent或使用 uv(推荐):
uv add mcp-agent对于额外的 LLM 提供商:
uv add "mcp-agent[openai, anthropic, google, azure, bedrock]"Claude Desktop 集成
添加到你的 claude_desktop_config.json:
{
"mcpServers": {
"mcp-agent": {
"command": "uvx",
"args": ["mcp-agent", "run"]
}
}
}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