Security-first MCP server for reverse engineering, malware analysis, forensics, and SAST.
Runs locally over stdio
This server isn't hosted β your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).
Run
uvx reversecore-mcp
MCP client config
{
"mcpServers": {
"reversecore-mcp": {
"command": "uvx",
"args": [
"reversecore-mcp"
]
}
}
}Run
docker run -i --rm ghcr.io/sjkim1127/reversecore_mcp:3.0.3
MCP client config
{
"mcpServers": {
"reversecore-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/sjkim1127/reversecore_mcp:3.0.3"
]
}
}
}