From asi
Provides MCP server for radare2 enabling AI assistants to perform binary analysis, disassembly, decompilation via r2ghidra, and reverse engineering on binaries.
How this skill is triggered — by the user, by Claude, or both
Slash command
/asi:radare2-hatcheryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
---
radare2-mcp provides an MCP server enabling Claude and other AI assistants to perform binary analysis using radare2.
# Via r2pm (radare2 package manager)
r2pm -Uci r2mcp
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"radare2": {
"command": "r2pm",
"args": ["-r", "r2mcp"]
}
}
}
docker build -t r2mcp .
{
"mcpServers": {
"radare2": {
"command": "docker",
"args": ["run", "--rm", "-i", "-v", "/tmp/data:/data", "r2mcp"]
}
}
}
The server exposes radare2 analysis via MCP:
open_file - Open binary for analysisanalyze - Run analysis at depth levels 0-4decompile_function - Get C-like pseudocodelist_functions - Enumerate discovered functionslist_strings - Extract strings from binaryxrefs_to - Find cross-referencesrun_command - Execute raw r2 commands# Rec2020 wide gamut learning
gay_seed!(0xe72b09cb7aebe913)
# Forward mode autodiff
∂params = Enzyme.gradient(Forward, loss, params, seed)
0xe72b09cb7aebe913radare2-hatchery (-1) ⊗ mcp-builder (0) ⊗ gay-mcp (+1) = 0 ✓
mcp-builder - MCP server developmentblackhat-go - Security techniquestree-sitter - AST-based code analysisnpx claudepluginhub plurigrid/asi --plugin asiAnalyzes binaries via MCP servers for Ghidra, IDA Pro, radare2. Handles disassembly, decompilation, function analysis, xrefs for malware, vulnerabilities, CTFs.
Guides binary reverse engineering with disassembly, decompilation, static/dynamic analysis using IDA Pro, Ghidra, radare2, x64dbg, and scripting via IDAPython, r2pipe, pwntools.
Reverse engineers malware binaries using Ghidra disassembler and decompiler to analyze internal logic, cryptographic routines, C2 protocols, and evasion techniques at assembly and pseudo-C level.