MCP Catalogs
首页

reverse-engineering-assistant vs filesystem

并排对比,帮你在这两个 MCP server 之间做选择。

reverse-engineering-assistant
by cyberkaida
filesystem
by modelcontextprotocol
Stars★ 731★ 85,748
30天用量
综合分5377
官方
分类
开发者工具安全AI / LLM 工具
本地文件系统开发者工具效率工具
实现语言JavaTypeScript
最近提交本月本月

reverse-engineering-assistant · 概述

Ghidra 的 MCP 服务器,为 AI 驱动的逆向工程提供专用工具,用于二进制分析。

filesystem · 概述

功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。

reverse-engineering-assistant · 使用场景

  • 自动化安全研究中的二进制分析任务
  • 辅助恶意软件分析中的逆向工程
  • 生成软件中算法和加密分析的报告

filesystem · 使用场景

  • 使 AI 模型能够读取和写入项目文件进行开发
  • 允许 Claude 或其他 MCP 客户端浏览和分析代码库
  • 为内容生成提供对特定目录的安全沙盒访问

reverse-engineering-assistant · 安装

安装

> 注意:ReVa 仅支持 Ghidra 12.0 及以上版本!

  1. 从发布页面下载与您 Ghidra 版本对应的发布包,并使用 Ghidra 扩展管理器安装。
  1. 或从源代码构建:
export GHIDRA_INSTALL_DIR=/path/to/ghidra
g radle install
  1. 在两个位置激活插件:

- 项目视图 → 文件 → 配置 → 配置所有插件 → 勾选 "ReVa Application Plugin" - 代码浏览器 → 文件 → 配置 → 配置所有插件 → 勾选 "ReVa Plugin" → 保存工具

Claude Code 配置

claude mcp add --scope user --transport http ReVa -- http://localhost:8080/mcp/message

VSCode 配置

{
  "mcp": {
    "servers": {
      "ReVa Assistant": {
        "type": "http",
        "url": "http://localhost:8080/mcp/message"
      }
    }
  }
}

filesystem · 安装

安装

使用 NPX

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

使用 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 扩展

点击 README 中的安装按钮直接在 VS Code 中安装。

对比内容由 README + GitHub 公开数据自动生成,定期更新。