ida-pro-mcp
v0.1.0AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
By mrexodiaLicense: MIT11.2k GitHub starsUpdated last month
Directory evidence
- Runtimes
- Codex and Claude Code
- Parsed components
- 2 skill or MCP entries
- Source updated
- Aug 5, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install ida-pro-mcp for Codex and Claude Code
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add ida-pro-mcp@agent-plugin-marketplacePaste and run these commands in a terminal with Codex. They add and refresh the PluginsMP catalog, then install this plugin.
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/mrexodia/ida-pro-mcpClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The repository root is the plugin root.
Plugin files
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── skills/idapython/SKILL.md└── .mcp.json
Included Skills1
IDA Pro Python scripting for reverse engineering. Use when writing IDAPython scripts, analyzing binaries, working with IDA's API for disassembly, decompilation (Hex-Rays), type systems, cross-references, functions, segments, or any IDA database manipulation. Covers ida_* modules (50+), idautils iterators, and common patterns.
MCP servers1
- command
- uv
- args
- run idalib-mcp --stdio
- cwd
- .
Plugin manifests2
{
"name": "ida-pro-mcp",
"version": "0.1.0",
"description": "AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.",
"author": {
"name": "mrexodia",
"url": "https://github.com/mrexodia/ida-pro-mcp"
},
"homepage": "https://github.com/mrexodia/ida-pro-mcp",
"repository": "https://github.com/mrexodia/ida-pro-mcp.git",
"license": "MIT",
"keywords": [
"ida",
"ida-pro",
"reverse-engineering",
"mcp"
],
"interface": {
"displayName": "IDA Pro MCP",
"shortDescription": "AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.",
"longDescription": "AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.",
"developerName": "mrexodia",
"category": "Developer Tools",
"capabilities": [
"Interactive",
"MCP"
],
"websiteURL": "https://github.com/mrexodia/ida-pro-mcp"
},
"mcpServers": "./.codex-plugin/mcp.json"
}{
"name": "ida-pro-mcp",
"version": "0.1.0",
"description": "AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.",
"mcpServers": {
"idalib": {
"command": "uv",
"args": [
"run",
"--project",
"${CLAUDE_PLUGIN_ROOT}",
"idalib-mcp",
"--stdio"
]
}
}
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[ida-pro-mcp on Agent Plugins Marketplace](https://pluginsmp.com/plugins/ida-pro-mcp)