Super Trouper MCP server
MCP server for the Frida reverse engineering toolkit.
19 stars181 downloads/wk
Reviews
Write oneNobody has reviewed Super Trouper yet.
If you have run it, two minutes of your experience saves the next person an afternoon.
Super Trouper tools
No tool declarations could be read from the package source. They show once the server is installed.
Public scan report
scanner v0.1.5 · 2026-09-19 · same rubric, same numbers if you re-run it
- Code scan2 source files scanned25/25
- –Live reliabilityno gateway calls yet and no remote to proben/a
- –Tool poisoningtools not inspected (local package is not executed); not countedn/a
- Auth qualitylocal package, no credentials required12/15
- Maintenancelast push 1 days ago15/15
- Maintainer identityregistry namespace matches repository owner; GitHub account older than a year9/10
What the publisher says
From the Super Trouper repository's README, as published. We do not edit it. Read it on GitHub
Super Trouper
An MCP server for the Frida reverse engineering toolkit.
Super Trouper runs an MCP server over STDIO that exposes Frida capabilities as tools for coding agents. It can connect to local, USB, and remote devices; inspect applications and processes; manage process sessions; and load, evaluate, and exchange messages with JavaScript instrumentation scripts. It can also search Frida CodeShare to discover community scripts and fetch them for use with the scripting tools. Device connections, sessions, and scripts are managed through the tools themselves and referenced by opaque handles.
Features
- Single Go binary — no Python, Node, or Frida CLI tooling required on your host
- Powered by Frida 17.x — statically linked against Frida Core DevKit v17.18.0
- Full device support — list and connect to local, USB, and remote devices, attach to apps and processes
- TypeScript and JavaScript instrumentation — create and load Frida scripts, evaluate directly in a target
- Frida CodeShare integration — search, browse, and fetch the CodeShare catalog of community scripts
- Runs anywhere — prebuilt binaries for macOS and Linux, install via Docker, Homebrew, or npm
Install
Homebrew
Install the macOS release through the project’s Homebrew tap:
brew install --cask crissyfield/tap/super-troupernpm
Install the launcher package through npm. It pulls in the platform-specific binary via optional dependencies:
npm install -g @crissyfield/super-trouperRelease Binary
Download a binary for your platform from the Releases page.
From Source
Install a Frida Core DevKit matching your build host first. Then build and install Super Trouper with the following commands:
# Set flags if the Frida devkit is not in a standard location
export CGO_CFLAGS="-I..path/to/frida-core-devkit/include"
export CGO_LDFLAGS="-L..path/to/frida-core-devkit/lib"
# Build and install
export CGO_ENABLED=1
go install github.com/crissyfield/super-trouper@latestUsage
Use the MCP server in your coding agent. Claude Code is the example below, but configuration is similar in Codex, OpenCode, Pi, Crush, and others.
Using the Binary
If the Super Trouper binary is not in your PATH, specify the full path in your MCP server configuration.
{
"mcpServers": {
"super-trouper": {
"command": "super-trouper"
}
}
}Using npx
npm users can run Super Trouper directly through npx without a global installation:
{
"mcpServers": {
"super-trouper": {
"command": "npx",
"args": ["-y", "@crissyfield/super-trouper"]
}
}
}Using Docker
Docker is a convenient way to run Super Trouper without installing it on your host.
{
"mcpServers": {
"super-trouper": {
"command": "docker",
"args": ["run", "-i", "--rm", "ghcr.io/crissyfield/super-trouper"]
}
}
}Nothing above is checked by us. What we check is on the safety report.
Install directly
Runs npx -y @crissyfield/super-trouper on your machine. Read the scan report first; the gateway never runs local packages.
claude mcp add super-trouper -- npx -y @crissyfield/super-trouper
Super Trouper: common questions
- Is Super Trouper MCP server safe?
- Yes, by our scan: it is graded A (94/100). Read the Super Trouper safety report
- How do I install Super Trouper?
- It runs on your machine. Copy the Claude Code, Claude Desktop or Cursor config from the install section.
- Does Super Trouper need an API key?
- Not as far as the registry entry and our scan can tell: no credentials are declared or required.
- Is Super Trouper maintained?
- The last commit was 2 days ago (2026-09-18). The latest release is v0.3.0.