mcpadapt vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
mcpadapt by grll | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 420 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 47 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 7 个月前 | 本月 |
mcpadapt · 概述
MCPAdapt将650多个MCP服务器连接到各种代理框架,如LangChain和SmolAgents。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcpadapt · 使用场景
- 将MCP服务器工具集成到基于LangChain的AI应用程序中
- 为SmolAgents代理添加文件系统功能
- 在CrewAI工作流中启用GitHub API访问
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcpadapt · 安装
# 对于Smolagents
uv add smolagents[mcp]
# 对于LangChain
uv add mcpadapt[langchain]
# 对于多个框架
uv add mcpadapt[langchain,crewAI]
# 或使用pip
pip install mcpadapt[langchain]对于Claude Desktop,添加到您的config.json:
{
"mcpServers": {
"mcpadapt": {
"command": "uv",
"args": ["run", "mcpadapt"]
}
}
}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