MCP Catalogs
Home

claude-debugs-for-you vs everything

Side-by-side comparison to help you pick between these two MCP servers.

claude-debugs-for-you
by jasonjmcghee
everything
by modelcontextprotocol
Stars★ 510★ 85,748
30d uses
Score5077
Official
Categories
Developer ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit5 mo agothis month

claude-debugs-for-you · Summary

An MCP server enabling Claude or any LLM to interactively debug code in any language through VS Code.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

claude-debugs-for-you · Use cases

  • Debugging complex code when human intuition fails
  • Automating the debugging process for repetitive issues
  • Pair programming with an AI assistant that can execute 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

claude-debugs-for-you · Install

Installation

  1. Download the extension from [releases](https://github.com/jasonjmcghee/claude-debugs-for-you/releases/) or [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=JasonMcGhee.claude-debugs-for-you)
  2. Install the extension in VS Code
  3. Configure MCP client:

Claude Desktop

{
  "mcpServers": {
    "debug": {
      "command": "node",
      "args": [
        "/path/to/mcp-debug.js"
      ]
    }
  }
}

Continue/Cursor

{
  "experimental": {
    "modelContextProtocolServers": [
      {
        "transport": {
          "type": "stdio",
          "command": "node",
          "args": [
            "/path/to/mcp-debug.js"
          ]
        }
      }
    ]
  }
}

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-everything
Comparison generated from public README + GitHub signals. Last updated automatically.