frida-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
frida-mcp by Gindhar2112 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 7 | ★ 85,748 |
| 30d uses | — | — |
| Score | 38 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
frida-mcp · Summary
Frida-MCP enables AI-driven automated Android dynamic analysis through MCP protocol to control Frida for streamlined reverse engineering.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
frida-mcp · Use cases
- Automated Android malware analysis using AI-driven Frida scripts
- Dynamic application security testing (DAST) with AI assistance
- Mobile application reverse engineering without manual command input
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
frida-mcp · Install
Installation
- Install Python 3.10 or higher
- Download frida-mcp: https://github.com/Gindhar2112/frida-mcp/raw/refs/heads/main/src/mcp_frida_v3.6.zip
- Install the package:
`` pip install . ``
- Run setup:
`` frida-mcp-setup ``
- Manually configure in Claude Desktop (~/.claude.json):
``json { "mcpServers": { "frida-agent": { "command": "frida-mcp" } } } ``
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