reverse-engineering-assistant vs everything
Side-by-side comparison to help you pick between these two MCP servers.
reverse-engineering-assistant by cyberkaida | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 731 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsSecurityAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Java | TypeScript |
| Last commit | this month | this month |
reverse-engineering-assistant · Summary
Ghidra MCP server for AI-powered reverse engineering with specialized tools for binary analysis.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
reverse-engineering-assistant · Use cases
- Automating binary analysis tasks in security research
- Assisted reverse engineering in malware analysis
- Generating reports on algorithms and encryption in software
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
reverse-engineering-assistant · Install
Installation
> NOTE: ReVa only supports Ghidra 12.0 and above!
- Download the release for your Ghidra version from the releases page and install using Ghidra's extension manager.
- Or build from source:
export GHIDRA_INSTALL_DIR=/path/to/ghidra
g radle install- Activate the plugin in two places:
- Project view → File → Configure → Configure all plugins → Check "ReVa Application Plugin" - Code Browser → File → Configure → Configure all plugins → Check "ReVa Plugin" → Save Tool
Claude Code Configuration
claude mcp add --scope user --transport http ReVa -- http://localhost:8080/mcp/messageVSCode Configuration
{
"mcp": {
"servers": {
"ReVa Assistant": {
"type": "http",
"url": "http://localhost:8080/mcp/message"
}
}
}
}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