MCP Catalogs
Home

frida-mcp vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

frida-mcp
by Gindhar2112
filesystem
by modelcontextprotocol
Stars★ 7★ 85,748
30d uses
Score3877
Official
Categories
SecurityDeveloper ToolsAI / LLM Tools
File SystemDeveloper ToolsProductivity
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.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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" } } } ``

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.