CutterMCP MCP Server

MCP Server for Cutter

Local serverstdioPython

What is the CutterMCP MCP server?

MCP Server for Cutter. The cuttermcp mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 1 defined tool rather than through you.

What it actually does

  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
  • Decompile and analyze binaries in Cutter
  • Automatically rename methods and data
  • List methods, imports, and exports

Its toolset

Everything the assistant can do here goes through one of these:

  • Python3 — MCP SDK

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Configuration

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. CutterMCP's toolset — Python3 — is a fair guide to whether it matches your workflow. It is maintained by ap425q; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the cuttermcp mcp server does with a few real requests.

Available tools

ToolWhat it does
Python3MCP [SDK](https://github.com/modelcontextprotocol/python-sdk)

How to install the CutterMCP MCP server

{
  "mcpServers": {
    "cutter": {
      "command": "python",
      "args": [
        "/ABSOLUTE_PATH_TO/bridge_mcp_cutter.py"
      ]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

Example prompts to try

  • Use CutterMCP to Python3.

Frequently asked questions

You need Cutter installed, Python 3, and the MCP Python SDK.