Back to MCP directory
publicPublicdnsLocal runtime

x64dbg

x64dbg插件项目,通过HTTP服务实现动态分析与LLM交互

article

README

🚀 x64dbg MCP 协议插件

本插件借助 x64dbgSDK 实现强大功能,能让动态分析变得像与大型语言模型对话一样简单,为开发者提供便捷的调试体验。

🚀 快速开始

简易安装步骤

  1. build\release 目录获取 .dp64 文件,并将其移动到 defualtx64dbgdir\release\x64\plugins 目录。
  2. src 目录获取 x64dbgmcp.py 文件,并将你的 claude_desktop_config 文件映射到其安装位置。
  3. 启动 x64dbg,然后启动 Claude Desktop。你始终可以通过按 ALT+L 在 x64dbg 中检查插件是否成功加载。

构建指南

  1. 克隆仓库。
  2. 进入 build 目录。
  3. 执行命令:cmake .. -DBUILD_X64=ON
  4. 执行命令:cmake build . --config Release

✨ 主要特性

  • 此插件目前仅支持 x64dbgSDK 提供的四个函数:
    1. DbgCmdExec
    2. DbgIsActive
    3. GetModuleList
    4. FindMemBaseAddr
  • 插件开发者希望添加 SDK 提供的大多数功能,让动态分析更加便捷。
  • 大部分 HTTP 服务器代码是由 Claude Sonnet 3.7 生成的。

⚠️ 重要提示

此插件仅适用于 x64dbg,如需用于 x86,请自行编译。

💡 使用建议

这是开发者的第一个仓库,可能存在一些错误,欢迎大家提出建议或额外功能需求。

📚 详细文档

函数链接 此处

🎬 演示

插件演示

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client