MCP Catalogs
首页

reverse-engineering-assistant vs everything

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

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

reverse-engineering-assistant · 概述

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

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

reverse-engineering-assistant · 使用场景

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

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 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"
      }
    }
  }
}

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。