everything vs GhidrAssistMCP
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | GhidrAssistMCP by symgraph | |
|---|---|---|
| Stars | ★ 85,748 | ★ 613 |
| 30d uses | — | — |
| Score | 77 | 53 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsSecurityAI / LLM Tools |
| Language | TypeScript | Java |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
GhidrAssistMCP · Summary
A Ghidra extension providing MCP server functionality for AI assistants to interact with reverse engineering capabilities.
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
GhidrAssistMCP · Use cases
- AI-assisted reverse engineering with Ghidra through tools like GhidrAssist
- Automated binary analysis using custom scripts with MCP integration
- Enhanced decompilation and code exploration through AI assistance
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-everythingGhidrAssistMCP · Install
Installation
Prerequisites
- Ghidra 11.4+ (tested with Ghidra 12.0 Public)
- An MCP Client (like GhidrAssist)
Binary Release (Recommended)
- Download the latest release from the [Releases page](https://github.com/jtang613/GhidrAssistMCP/releases)
- In Ghidra: File → Install Extensions → Add Extension
- Select the downloaded ZIP file
- Enable the plugin: File → Configure → Configure Plugins
Building from Source
git clone <repository-url>
cd GhidrAssistMCP
export GHIDRA_INSTALL_DIR=/path/to/ghidra
gradle installExtension