MCP Catalogs
首页

claude-debugs-for-you vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

claude-debugs-for-you
by jasonjmcghee
everything
by modelcontextprotocol
Stars★ 510★ 85,748
30天用量
综合分5077
官方
分类
开发者工具AI / LLM 工具
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交5 个月前本月

claude-debugs-for-you · 概述

一个MCP服务器,允许Claude或任何LLM通过VS Code交互式调试任何语言的代码。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

claude-debugs-for-you · 使用场景

  • 当人类直觉无法解决时调试复杂代码
  • 自动化处理重复性问题的调试过程
  • 与能够执行代码的AI助手进行结对编程

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

claude-debugs-for-you · 安装

安装

  1. 从[发布版](https://github.com/jasonjmcghee/claude-debugs-for-you/releases/)或[VS Code市场](https://marketplace.visualstudio.com/items?itemName=JasonMcGhee.claude-debugs-for-you)下载扩展
  2. 在VS Code中安装扩展
  3. 配置MCP客户端:

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 · 安装

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
对比内容由 README + GitHub 公开数据自动生成,定期更新。