ida-mcp-rs vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
ida-mcp-rs by blacktop | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 445 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 54 | 77 |
| 官方 | — | ✓ |
| 分类 | 安全开发者工具AI / LLM 工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Rust | TypeScript |
| 最近提交 | 本月 | 本月 |
ida-mcp-rs · 概述
MCP server,为 AI 驱动的逆向工程提供 IDA Pro 支持,提供程序分析、反汇编和脚本功能。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
ida-mcp-rs · 使用场景
- 使用 AI 代理进行自动化恶意软件分析,识别可疑行为
- 软件安全研究中的二进制审计和漏洞检测
- 软件兼容性分析和遗留代码理解
- 软件逆向工程项目的自动化文档生成
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
ida-mcp-rs · 安装
安装
前置要求
- IDA Pro 9.2+ 及有效许可证(推荐 9.3sp1)
通过 Homebrew 安装(macOS / Linux)
brew install blacktop/tap/ida-mcp通过 Scoop 安装(Windows)
scoop bucket add blacktop https://github.com/blacktop/scoop-bucket
scoop install blacktop/ida-mcp配置 Claude Desktop
添加到您的 Claude Desktop 配置中:
{
"mcpServers": {
"ida": {
"command": "ida-mcp",
"env": {
"IDA_MCP_TOOLSETS": "core,functions,disassembly,decompile,xrefs",
"IDA_MCP_READ_ONLY": "true"
}
}
}
}直接下载
二进制文件可在 [GitHub Releases](https://github.com/blacktop/ida-mcp-rs/releases) 获取。
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