- Explore MCP Servers
- CutterMCP
Cuttermcp
What is Cuttermcp
CutterMCP is a Model Context Protocol server designed to enable Large Language Models (LLMs) to autonomously reverse engineer applications. It provides various tools derived from the core functionalities of Cutter to MCP clients.
Use cases
Use cases for CutterMCP include automating the analysis of malware, enhancing the understanding of legacy applications, and providing insights into software vulnerabilities through automated reverse engineering.
How to use
To use CutterMCP, first install Cutter and the MCP SDK. Download the CutterMCP plugin and place it in the appropriate directory within Cutter. Restart Cutter to activate the plugin. Configure your MCP client (e.g., Claude Desktop) to connect to CutterMCP by editing the configuration file to point to the bridge_mcp_cutter.py script.
Key features
CutterMCP includes features such as decompiling and analyzing binaries in Cutter, automatically renaming methods and data, and listing methods, imports, and exports.
Where to use
CutterMCP is applicable in fields such as software reverse engineering, malware analysis, and application security assessments, where understanding binary code is crucial.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Cuttermcp
CutterMCP is a Model Context Protocol server designed to enable Large Language Models (LLMs) to autonomously reverse engineer applications. It provides various tools derived from the core functionalities of Cutter to MCP clients.
Use cases
Use cases for CutterMCP include automating the analysis of malware, enhancing the understanding of legacy applications, and providing insights into software vulnerabilities through automated reverse engineering.
How to use
To use CutterMCP, first install Cutter and the MCP SDK. Download the CutterMCP plugin and place it in the appropriate directory within Cutter. Restart Cutter to activate the plugin. Configure your MCP client (e.g., Claude Desktop) to connect to CutterMCP by editing the configuration file to point to the bridge_mcp_cutter.py script.
Key features
CutterMCP includes features such as decompiling and analyzing binaries in Cutter, automatically renaming methods and data, and listing methods, imports, and exports.
Where to use
CutterMCP is applicable in fields such as software reverse engineering, malware analysis, and application security assessments, where understanding binary code is crucial.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content

cutterMCP
cutterMCP is an Model Context Protocol server for allowing LLMs to autonomously reverse engineer applications. It exposes numerous tools from core Cutter functionality to MCP clients.
Features
MCP Server + Cutter Plugin
- Decompile and analyze binaries in Cutter
- Automatically rename methods and data
- List methods, imports, and exports
Installation
Prerequisites
Cutter
First, download the latest release from this repository. This contains the Cutter plugin and Python MCP client. Then, you can directly import the plugin into Cutter.
- Run Cutter
- Go to Edit -> Preferences -> Plugins
- Find the plugin directory location
- Copy
CutterMCPPlugin.pyfrom the downloaded release and paste it inside the python folder - Restart Cutter
- If successful, you’ll see the plugin under Windows -> Plugins and a new widget in the bottom panel
MCP Clients
Theoretically, any MCP client should work with cutterMCP. one example is given below.
Example 1: Claude Desktop
To set up Claude Desktop as a Cutter MCP client, go to Claude -> Settings -> Developer -> Edit Config -> claude_desktop_config.json and add the following:
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"
]
}
}
}
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










