MCP Catalogs
Home

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
Score3877
Official
Categories
SecurityDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last committhis monththis 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

  1. Install Python 3.10 or higher
  2. Download frida-mcp: https://github.com/Gindhar2112/frida-mcp/raw/refs/heads/main/src/mcp_frida_v3.6.zip
  3. Install the package:

`` pip install . ``

  1. Run setup:

`` frida-mcp-setup ``

  1. 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
Comparison generated from public README + GitHub signals. Last updated automatically.