everything vs nexus
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | nexus by Nexus-Router | |
|---|---|---|
| Stars | ★ 85,748 | ★ 427 |
| 30天用量 | — | — |
| 综合分 | 77 | 50 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具开发者工具安全 |
| 实现语言 | TypeScript | Rust |
| 最近提交 | 本月 | 2 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
nexus · 概述
Nexus 是统一网关,聚合 MCP 服务器、API 和 LLM 提供商,提供安全、治理和路由功能。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
nexus · 使用场景
- 企业 AI 基础设施的中心管理,支持多个提供商和服务器
- 带有认证和速率限制的安全 MCP 资源访问控制
- 结合不同 AI 工具和模型的统一 API 层
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-everythingnexus · 安装
快速安装
curl -fsSL https://nexusrouter.com/install | bashDocker
docker pull ghcr.io/grafbase/nexus:latest配置
创建 nexus.toml 文件并添加您的 MCP 服务器和 LLM 提供商:
[mcp.servers.github]
url = "https://api.githubcopilot.com/mcp/"
auth.token = "{{ env.GITHUB_TOKEN }}"
[mcp.servers.filesystem]
cmd = ["npx", "-y", "@modelcontextprotocol/server-filesystem", "/home/YOUR_USERNAME/Desktop"]Claude Desktop 配置
添加到您的 claude_desktop_config.json:
{
"mcpServers": {
"nexus": {
"command": "nexus",
"args": []
}
}
}