
cutterMCP 是一个模型上下文协议(Model Context Protocol)服务器,允许大型语言模型(LLMs)自主反向工程应用程序。它从核心 Cutter 功能中暴露了大量工具给 MCP 客户端。
MCP 服务器 + Cutter 插件
首先,从这个仓库下载最新版本。这包含 Cutter 插件和 Python MCP 客户端。然后,你可以直接将插件导入到 Cutter 中。
CutterMCPPlugin.py 文件复制并粘贴到 python 文件夹内理论上,任何 MCP 客户端都应该能与 cutterMCP 兼容。下面提供了一个示例。
要将 Claude Desktop 设置为 Cutter MCP 客户端,请前往 Claude -> 设置 -> 开发者 -> 编辑配置 -> claude_desktop_config.json 并添加以下内容:
MacOS/Linux :
{
"mcpServers": {
"cutter": {
"command": "python",
"args": [
"/ABSOLUTE_PATH_TO/bridge_mcp_cutter.py"
]
}
}
}
Windows :
{
"mcpServers": {
"cutter": {
"command": "python",
"args": [
"C:\\ABSOLUTE_PATH_TO\\bridge_mcp_cutter.py"
]
}
}
}