
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"
]
}
}
}
Recommend MCP Servers 💡
mcp-text-editor
A Model Context Protocol (MCP) server that provides line-oriented text file editing capabilities through a standardized API. Optimized for LLM tools with efficient partial file access to minimize token usage.
4oimage-mcp
An MCP server integrating with 4o-image API for LLMs to generate and edit images from text prompts.
mcp-geocoder-rosetta
Geocoder MCP server implementations in Python and TypeScript using Google Maps API
@Jktfe/servemyapi
A personal MCP (Model Context Protocol) server for securely storing and accessing API keys across projects using the macOS Keychain.
raj-mehra/jira-mcp
Jira integration server providing ticket fetching and searching via MCP framework
mcp-v8
MCP server that exposes a V8 JavaScript runtime as a tool for AI agents like Claude and Cursor. Supports persistent heap snapshots via S3 or local filesystem, and is ready for integration with modern AI development environments.