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 | — | — |
| Score | 77 | 55 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsSecurity |
| Language | TypeScript | Python |
| Last commit | this month | 1 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-everythingmcp-windbg · Install
Installation
- Install Debugging Tools for Windows or WinDbg from Microsoft Store
- Install Python 3.10 or higher
- Install the MCP server:
pip install mcp-windbgClaude 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"
}
}
}
}