jebmcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
jebmcp by flankerhqd | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 235 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsSecurityAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
jebmcp · Summary
MCP server enabling AI assistants to interact with JEB Pro reverse engineering tool for binary analysis.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
jebmcp · Use cases
- Automated vulnerability detection in Android APK files using AI analysis
- Code refactoring assistance with automated renaming of methods and classes
- Reverse engineering support by providing AI-powered analysis of application structure
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
jebmcp · Install
Installation
Requirements
- Python >= 3.11
- uv: https://docs.astral.sh/uv/getting-started/installation/
Steps
- Copy the src/jeb_mcp/MCP.py to $JEB_INSTALLATION_DIR/scripts
- Start the script in JEB GUI (
File->Scripts->Scripts selector...) - Add the MCP server configuration in your client (e.g., Cline, Cursor)
Example configuration:
{
"mcpServers": {
"jeb": {
"command": "uv",
"args": ["--directory", "jeb-mcp/src/jeb_mcp", "run", "server.py"],
"timeout": 1800,
"disabled": false
}
}
}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