Model-Context-Protocol vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
Model-Context-Protocol by Abdulabin | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 30 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 11 个月前 | 本月 |
Model-Context-Protocol · 概述
一个Python MCP客户端,通过Gemini API实现多服务器连接与LLM编排。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
Model-Context-Protocol · 使用场景
- 构建具有实时访问外部工具和数据能力的AI助手
- 能够搜索和分析API论文的学术研究机器人
- 将LLM与自定义工具结合的开发环境
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
Model-Context-Protocol · 安装
# 克隆并安装依赖项
git clone https://github.com/Abdulabin/Model-Context-Protocol.git
cd Model-Context-Protocol
pip install -r requirements.txt
# 配置API密钥
# 创建.env文件,包含 GEMINI_API_KEY="YOUR_API_KEY_HERE"
# 运行CLI客户端
python mcp_client.py
# 启动Web界面
uvicorn app:appeverything · 安装
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