nest-mcp vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
nest-mcp by btwld | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 7 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 41 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具运维基建 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
nest-mcp · 概述
基于NestJS的TypeScript框架,通过装饰器和依赖注入构建MCP服务器、客户端和网关。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
nest-mcp · 使用场景
- 构建MCP服务器,向AI客户端暴露工具、资源和提示
- 创建MCP客户端,将现有MCP服务器集成到NestJS应用中
- 在带有前缀和策略的统一网关后聚合多个MCP服务器
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
nest-mcp · 安装
根据您的用例安装相应的包:
# 服务器 — 向AI客户端暴露工具/资源
npm install @nest-mcp/server @modelcontextprotocol/sdk zod@^4
# 客户端 — 调用远程MCP服务器上的工具
npm install @nest-mcp/client @modelcontextprotocol/sdk zod@^4
n
# 网关 — 将多个服务器聚合为一个
npm install @nest-mcp/gateway @modelcontextprotocol/sdk zod@^4
# 如果尚未安装,安装NestJS对等依赖项
npm install @nestjs/common @nestjs/core reflect-metadata rxjs对于Claude Desktop,将其添加到您的claude_desktop_config.json:
{
"mcpServers": {
"nest-mcp": {
"command": "node",
"args": ["path/to/your/server.js"]
}
}
}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