everything vs mcp-nodejs-debugger
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-nodejs-debugger by workbackai | |
|---|---|---|
| Stars | ★ 85,748 | ★ 300 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 6 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-nodejs-debugger · Summary
MCP server enabling runtime debugging of Node.js applications for Cursor and Claude Code.
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
mcp-nodejs-debugger · Use cases
- Debug Node.js applications running in production or staging environments
- Inspect variables and runtime state without restarting applications
- Set breakpoints to analyze code flow at specific execution points
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-everythingmcp-nodejs-debugger · Install
Installation
For Claude Desktop
Add the following to your Claude Desktop configuration file:
{
"mcpServers": {
"nodejs-debugger": {
"command": "npx",
"args": ["@hyperdrive-eng/mcp-nodejs-debugger"]
}
}
}For Claude Code
claude mcp add nodejs-debugger npx @hyperdrive-eng/mcp-nodejs-debuggerFor Cursor
Add to your Cursor MCP configuration (~/.cursor/mcp.json):
{
"mcpServers": {
"nodejs-debugger": {
"command": "npx",
"args": ["@hyperdrive-eng/mcp-nodejs-debugger"]
}
}
}