MCP Catalogs
Home

everything vs mcp-windbg

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

everything
by modelcontextprotocol
mcp-windbg
by svnscha
Stars★ 85,748★ 1,288
30d uses
Score7755
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsSecurity
LanguageTypeScriptPython
Last committhis month1 mo ago

everything · Summary

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

mcp-windbg · Summary

MCP server that bridges AI models with WinDbg for Windows crash dump analysis and remote debugging.

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-windbg · Use cases

  • Automated Windows crash dump analysis through natural language queries
  • Remote debugging assistance for live Windows applications
  • Batch processing of multiple crash dumps to identify patterns

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

mcp-windbg · Install

Installation

  1. Install Debugging Tools for Windows or WinDbg from Microsoft Store
  2. Install Python 3.10 or higher
  3. Install the MCP server:
pip install mcp-windbg

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcp_windbg": {
      "command": "python",
      "args": ["-m", "mcp_windbg"],
      "env": {
        "_NT_SYMBOL_PATH": "SRV*C:\\Symbols*https://msdl.microsoft.com/download/symbols"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.