MCP ExplorerExplorer

Cuttermcp

@ap425qon a year ago
6 Apache-2.0
FreeCommunity
AI Systems
MCP Server for Cutter

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.

Content

License
LinkedIn

cutter_MCP_logo

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.

  1. Run Cutter
  2. Go to Edit -> Preferences -> Plugins
  3. Find the plugin directory location
  4. Copy CutterMCPPlugin.py from the downloaded release and paste it inside the python folder
  5. Restart Cutter
  6. 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"
      ]
    }
  }
}

Tools

No tools

Comments

Recommend MCP Servers

View All MCP Servers