x64dbg_mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
x64dbg_mcp by bromoket | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 40 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | C++ | TypeScript |
| Last commit | 3 mo ago | this month |
x64dbg_mcp · Summary
MCP server for x64dbg debugger with 23 mega-tools and 151 endpoints for reverse engineering with AI assistants.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
x64dbg_mcp · Use cases
- Automating reverse engineering tasks with AI assistance in debugging sessions
- Bypassing anti-debug mechanisms through AI-controlled debugger operations
- Analyzing control flow and identifying patterns in malicious 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
x64dbg_mcp · Install
Prerequisites
- **x64dbg** - [Download latest snapshot](https://github.com/x64dbg/x64dbg/releases)
- **Node.js** >= 18 - [Download](https://nodejs.org/)
- **MCP plugin** - [Download from releases](https://github.com/bromoket/x64dbg_mcp/releases) (
x64dbg_mcp.dp64and/orx64dbg_mcp.dp32)
Installation
- Copy the plugin DLLs into your x64dbg plugins directories:
x64dbg/
x64/plugins/x64dbg_mcp.dp64 <-- for 64-bit debugging
x32/plugins/x64dbg_mcp.dp32 <-- for 32-bit debugging- Start x64dbg (you should see '[MCP] x64dbg MCP Server started on 127.0.0.1:27042' in the log)
- Configure your MCP client (example for Claude Desktop):
{
"mcpServers": {
"x64dbg": {
"command": "npx",
"args": ["-y", "x64dbg-mcp-server"]
}
}
}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