everything vs nestjs-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | nestjs-mcp by orbit-codes | |
|---|---|---|
| Stars | ★ 85,748 | ★ 11 |
| 30d uses | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
nestjs-mcp · Summary
A NestJS integration for MCP that enables building MCP servers using dependency injection and decorators.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
nestjs-mcp · Use cases
- Building MCP servers with NestJS's modular architecture
- Exposing REST APIs as MCP resources and tools
- Integrating existing NestJS applications with MCP
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingnestjs-mcp · Install
npm install @orbit-codes/nestjs-mcp @modelcontextprotocol/sdk zodIn your NestJS application:
import { Module } from '@nestjs/common';
import { MCPModule } from '@orbit-codes/nestjs-mcp';
@Module({
imports: [
MCPModule.register({
name: 'MyMCPServer',
version: '1.0.0',
sseEndpoint: '/mcp/sse',
messagesEndpoint: '/mcp/messages',
}),
],
})
export class AppModule {}For Claude Desktop, add to config.json:
{
"mcpServers": {
"nestjs-mcp": {
"command": "node",
"args": ["path/to/your/app.js"]
}
}
}