zed-mcp-server-context7 vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
zed-mcp-server-context7 by akbxr | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 106 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Rust | TypeScript |
| 最近提交 | 8 个月前 | 本月 |
zed-mcp-server-context7 · 概述
MCP 服务器,集成 Context7 为 Zed 助手获取最新文档。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
zed-mcp-server-context7 · 使用场景
- 在 Zed 助手中获取库的最新 API 文档
- 避免 LLM 响应中使用过时的代码示例
- 针对特定版本的框架查询文档,如 Next.js 和 React
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
zed-mcp-server-context7 · 安装
安装
- 从 Zed 扩展市场安装
- 代理模式配置:
- 打开 Zed 的助手设置 - 启用 Context7 MCP 服务器(将红点切换为绿点) - 在活动助手配置文件中启用 Context7(写入 | 提问 → 工具)
- 可选环境变量:
``json { "context_server": { "mcp-server-context7": { "source": "extension", "enabled": true, "settings": { "context7_api_key": "YOUR_CONTEXT7_API_KEY" } } } } ``
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