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 | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 5 mo ago | this 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
- 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)
- Install the extension in VS Code
- 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