x64dbg_mcp vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
x64dbg_mcp by bromoket | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 40 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | 安全开发者工具AI / LLM 工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | C++ | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
x64dbg_mcp · 概述
x64dbg调试器的MCP服务器,提供23个大型工具和151个端点,支持AI辅助逆向工程。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
x64dbg_mcp · 使用场景
- 在调试会话中使用AI自动化逆向工程任务
- 通过AI控制的调试器操作绕过反调试机制
- 分析控制流并识别恶意代码中的模式
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
x64dbg_mcp · 安装
前置要求
- **x64dbg** - [下载最新快照](https://github.com/x64dbg/x64dbg/releases)
- **Node.js** >= 18 - [下载](https://nodejs.org/)
- **MCP插件** - [从发布页面下载](https://github.com/bromoket/x64dbg_mcp/releases) (
x64dbg_mcp.dp64和/或x64dbg_mcp.dp32)
安装步骤
- 将插件DLL复制到x64dbg插件目录:
x64dbg/
x64/plugins/x64dbg_mcp.dp64 <-- 用于64位调试
x32/plugins/x64dbg_mcp.dp32 <-- 用于32位调试- 启动x64dbg(日志中应显示'[MCP] x64dbg MCP Server started on 127.0.0.1:27042')
- 配置MCP客户端(Claude Desktop示例):
{
"mcpServers": {
"x64dbg": {
"command": "npx",
"args": ["-y", "x64dbg-mcp-server"]
}
}
}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 中安装。