ida-pro-mcp
MCP ServerFreeAI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
Capabilities13 decomposed
mcp protocol bridging with dual-process architecture
Medium confidenceExposes IDA Pro's reverse engineering API through the Model Context Protocol by implementing a proxy server that runs in a separate Python process from IDA, using zeromcp library for transport abstraction (stdio, HTTP, SSE modes). The proxy dispatches local MCP metadata requests directly while forwarding IDA-specific operations to the plugin's internal HTTP handler, enabling 30+ MCP clients (Claude Desktop, VS Code, Cursor, Windsurf) to communicate with IDA without blocking the UI thread.
Implements process isolation between MCP protocol handling and IDA's single-threaded runtime using a proxy + plugin architecture with zeromcp transport abstraction, enabling hot reload and supporting 30+ heterogeneous MCP clients without modifying IDA's core
Unlike direct IDA Python plugins or REST wrappers, the dual-process MCP bridge allows LLMs to control IDA through a standardized protocol while preventing network requests from blocking the UI, and supports both interactive (GUI) and headless (idalib) modes from a single codebase
thread-safe ida api invocation via @idasync decorator chain
Medium confidenceEnforces strict thread synchronization for all IDA API calls through a decorator pattern (@idasync) that queues requests and executes them on IDA's main thread, preventing race conditions and crashes from concurrent access to IDA's single-threaded database. The decorator system chains through the RPC layer, ensuring that all operations from the MCP proxy are serialized before reaching IDA's kernel.
Uses a decorator-based RPC system that chains @idasync decorators through the proxy layer to serialize all IDA API calls onto the main thread, with explicit @unsafe flags for privileged operations (debugging, code execution), rather than relying on locks or async/await primitives
More robust than naive threading or lock-based approaches because it guarantees serialization at the architectural level, and more maintainable than manual queue management because the decorator pattern makes thread-safety requirements explicit in the code
resource-based mcp interface for binary metadata exposure
Medium confidenceExposes binary metadata (functions, strings, imports, types) as MCP resources that can be queried and subscribed to, rather than only through tool calls. Resources provide a read-only view of the binary's structure that LLMs can reference without invoking tools, enabling more efficient context management and reducing round-trips for metadata queries.
Implements MCP resources interface to expose binary metadata (functions, strings, imports) as queryable resources rather than only through tool calls, enabling LLMs to reference metadata in prompts without explicit tool invocations and reducing context management overhead
More efficient than tool-only access for metadata because resources can be included in prompts directly, and more flexible than static exports because resources are dynamically generated from IDA's current analysis state
type-safe rpc layer with schema validation
Medium confidenceImplements a type-safe RPC layer that validates all requests and responses against JSON schemas before forwarding to IDA, ensuring that LLM-generated tool calls conform to expected signatures and preventing crashes from malformed requests. The system uses Python type hints and Pydantic models to define tool schemas, which are exposed to MCP clients for validation and auto-completion.
Implements a type-safe RPC layer using Pydantic models and JSON schema validation that validates all LLM-generated tool calls before forwarding to IDA, preventing malformed requests from reaching IDA's API and providing schema information to MCP clients for validation
More robust than unvalidated RPC because it catches type errors early before they reach IDA, and more developer-friendly than manual validation because Pydantic models provide both validation and auto-documentation
capability-based access control with @unsafe decorator gating
Medium confidenceImplements fine-grained access control through decorator-based capability flags (@unsafe) that gate privileged operations (debugging, code execution, memory modification) and require explicit opt-in from MCP clients. The system tracks which capabilities are enabled per client and enforces them at the RPC boundary, preventing accidental privilege escalation.
Implements decorator-based capability gating (@unsafe flags) that requires explicit opt-in from MCP clients to access privileged operations (debugging, code execution, memory writes), providing defense-in-depth against accidental or malicious privilege escalation
More explicit than implicit permission models because @unsafe decorators make privileged operations visible in code, and more flexible than role-based access control because capabilities can be enabled per-client without modifying server code
decompilation and disassembly retrieval with cross-reference analysis
Medium confidenceRetrieves decompiled pseudocode, disassembly listings, and control flow graphs from IDA's analysis engine via MCP tools, supporting function-level and address-range queries. The system leverages IDA's built-in decompiler (Hex-Rays) and disassembly engine to generate human-readable code representations that LLMs can analyze, with cross-reference data (xrefs) showing function call graphs and data dependencies.
Exposes IDA's native decompiler and disassembly engine through MCP tools, allowing LLMs to request decompilation on-demand without parsing raw binary files, and includes cross-reference analysis that maps function call graphs and data dependencies discovered by IDA's static analysis
More accurate than generic binary analysis tools (Ghidra, Radare2) because it uses IDA's proprietary decompiler and analysis engine, and more flexible than static decompilation because LLMs can iteratively request analysis of specific functions and follow xrefs interactively
binary metadata extraction (functions, strings, imports, types)
Medium confidenceExtracts structured metadata from the loaded binary including function listings with entry points and sizes, string constants, imported symbols, and type information (function signatures, struct definitions). The system queries IDA's internal database (IDB) to enumerate all discovered functions, strings, and imports, returning them as JSON objects that LLMs can analyze for vulnerability patterns or functionality mapping.
Queries IDA's internal IDB database to extract all discovered metadata (functions, strings, imports, types) as structured JSON, leveraging IDA's analysis results rather than re-parsing the binary, enabling LLMs to reason about binary structure without loading the binary themselves
More complete than static binary parsing tools because it uses IDA's sophisticated analysis engine to identify functions and resolve imports, and more efficient than re-analyzing the binary because it reuses IDA's cached analysis results
interactive binary modification (comments, patches, renaming, type declarations)
Medium confidenceAllows LLMs to modify the binary analysis in IDA by adding comments, applying patches, renaming functions/variables, and declaring types. Modifications are persisted to the IDB file, enabling iterative analysis where LLMs can annotate their findings and the next analysis pass uses the updated metadata. The system enforces write safety through optional @unsafe decorators for sensitive operations.
Enables LLMs to persistently modify IDA's analysis database (IDB) with comments, patches, and type declarations, creating a feedback loop where subsequent analysis passes use the LLM's annotations, rather than treating analysis as read-only
More powerful than read-only analysis tools because it allows LLMs to iteratively refine their understanding by annotating the binary, and more integrated than external patch tools because modifications are stored in IDA's native format and immediately visible in the GUI
debugging operations (breakpoints, register inspection, memory manipulation)
Medium confidenceProvides LLM-controlled debugging capabilities including setting/removing breakpoints, reading/writing registers, and inspecting/modifying memory at runtime. These operations require the @unsafe decorator flag and are only available when IDA's debugger is active, allowing LLMs to interact with running processes to validate analysis or extract runtime state.
Exposes IDA's debugger API through MCP tools with explicit @unsafe decorator gating, allowing LLMs to perform dynamic analysis (breakpoints, register reads, memory writes) on running processes while maintaining safety boundaries through capability flags
More integrated than standalone debuggers (gdb, lldb) because it combines static analysis (decompilation, xrefs) with dynamic debugging in a single LLM-controlled interface, and safer than unrestricted debugging because @unsafe flags make privileged operations explicit
arbitrary python code execution in ida context
Medium confidenceAllows LLMs to execute arbitrary Python code within IDA's Python environment via the @unsafe decorator, enabling access to IDA's full Python API and custom analysis scripts. Code is executed on IDA's main thread (via @idasync), with access to the IDA module and all loaded plugins, enabling advanced analysis that cannot be expressed through pre-defined MCP tools.
Exposes IDA's full Python API to LLMs through an @unsafe-gated code execution tool, enabling arbitrary Python scripts to run in IDA's context with access to all loaded modules and plugins, rather than limiting LLMs to pre-defined tool calls
More flexible than tool-based APIs because LLMs can implement custom analysis logic without modifying ida-pro-mcp, but requires explicit @unsafe flags to prevent accidental privilege escalation compared to unrestricted Python execution
headless binary analysis automation via idalib server
Medium confidenceProvides a headless analysis mode using IDA's idalib library (Python bindings to IDA's core engine) that runs without the GUI, enabling batch processing and automation of binary analysis tasks. The idalib_server.py component exposes the same MCP API as the interactive mode, allowing LLMs to analyze binaries in a non-interactive environment without requiring IDA Pro's GUI license.
Implements a headless analysis mode using IDA's idalib Python bindings that exposes the same MCP API as the interactive plugin, enabling batch binary analysis without GUI overhead while maintaining API compatibility with interactive mode
More efficient than running IDA GUI for batch analysis because it eliminates rendering overhead and allows parallel processing, and more integrated than external analysis tools because it uses IDA's native analysis engine and maintains the same API surface
multi-client mcp installation and configuration management
Medium confidenceProvides automated installation and configuration of ida-pro-mcp across 30+ MCP clients (Claude Desktop, VS Code, Cursor, Windsurf, etc.) through a single --install command that generates appropriate JSON configuration files for each client. The system detects installed clients and writes configuration to their standard config directories, enabling LLMs in any supported client to connect to IDA without manual setup.
Implements a single --install command that auto-detects and configures 30+ heterogeneous MCP clients (Claude Desktop, VS Code, Cursor, Windsurf, etc.) by writing client-specific JSON configs to standard directories, rather than requiring manual per-client configuration
More user-friendly than manual MCP client configuration because it automates detection and setup across multiple clients, and more maintainable than per-client installation scripts because configuration logic is centralized in the installer
interactive mode with ida gui plugin hot-reload
Medium confidenceRuns ida-pro-mcp as an IDA Pro plugin (ida_mcp.py) that loads into the IDA GUI process, enabling interactive reverse engineering where users can manually inspect code in IDA while LLMs provide analysis and suggestions. The plugin supports hot-reload without restarting IDA, allowing developers to iterate on ida-pro-mcp code changes without losing analysis state.
Implements IDA Pro plugin mode (ida_mcp.py) that runs in the IDA GUI process with hot-reload support, enabling interactive reverse engineering where users manually inspect code in IDA while LLMs provide analysis, rather than forcing headless-only workflows
More flexible than headless-only analysis because it preserves the IDA GUI for manual inspection and supports hot-reload for development, and more integrated than external MCP servers because the plugin runs in-process with IDA's analysis engine
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with ida-pro-mcp, ranked by overlap. Discovered automatically through the match graph.
ida-pro-mcp
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
Anubis MCP
** (Elixir) - A high-performance and high-level Model Context Protocol (MCP) implementation in Elixir. Think like "Live View" for MCP.
@modelcontextprotocol/sdk
Model Context Protocol implementation for TypeScript
arcade-mcp
The best way to create, deploy, and share MCP Servers
decocms
Deco CMS — Self-hostable MCP Gateway for managing AI connections and tools
@ampersend_ai/modelcontextprotocol-sdk
Model Context Protocol implementation for TypeScript
Best For
- ✓Security researchers integrating AI assistants into IDA workflows
- ✓Teams automating binary analysis pipelines with LLM agents
- ✓Developers building custom reverse engineering tools on top of IDA
- ✓Developers extending ida-pro-mcp with new IDA API bindings
- ✓Teams running multiple concurrent LLM agents against a single IDA instance
- ✓Security researchers requiring stable, crash-free IDA automation
- ✓LLM clients that support MCP resources (Claude, some VS Code extensions)
- ✓Workflows where metadata is referenced frequently in prompts
Known Limitations
- ⚠Dual-process model adds network round-trip latency (~50-200ms per request) compared to direct IDA plugin calls
- ⚠Thread synchronization via @idasync decorator chain required for all IDA API calls, limiting concurrent request parallelism
- ⚠HTTP handler in IDA plugin is single-threaded, serializing all incoming requests from proxy
- ⚠Headless mode (idalib) requires IDA license and cannot use GUI-dependent features
- ⚠Serialization of all IDA operations through main thread creates a bottleneck; concurrent requests are queued and executed sequentially
- ⚠Decorator overhead adds ~5-10ms per operation for queue management and thread context switching
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
Repository Details
Last commit: Apr 21, 2026
About
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
Categories
Alternatives to ida-pro-mcp
Are you the builder of ida-pro-mcp?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →