MCP plugin for IDA Pro/IDA Free that uses ida-domain for database access
Project description
ida-domain-mcp
A headless Model Context Protocol (MCP) server for IDA Pro built on top of ida-domain. It lets AI agents (or any MCP client) open and analyze IDA databases on demand — without launching the IDA manully — and control common reverse engineering workflows programmatically.
Unlike GUI-centric approaches, ida-domain-mcp spins up per-project worker processes on demand and loads binaries via an MCP tool call during the agent's workflow. You don't have to pre-load binaries at MCP server startup, and once configured, the whole flow can run fully automatically without human interaction.
Example
Why it's different
- Headless by design: No dependency on the IDA graphical UI. Uses IDA's headless runners underneath via
ida-domain. - On-demand database loading: Call the
open_databaseMCP tool at any time during the agent session to load a binary or IDB; no manual preloading required. - Multi-project isolation: Each
project_nameruns in its own worker process; multiple binaries can be analyzed concurrently without interfering with each other.
Features (tools)
High-level categories of tools exposed via MCP (see src/ida_domain_mcp/main.py and ida_tools.py for the full list):
- Project/session management:
open_database,close_database,get_metadata - Navigation and listings:
list_segments,list_functions,list_functions_filter,list_globals,list_globals_filter,list_imports,list_strings,list_strings_filter,get_entry_points - Function-oriented:
get_function_by_name,get_function_by_address,get_callers,get_callees,decompile_function(requires Hex-Rays),disassemble_function - Cross-references:
get_xrefs_to,get_xrefs_to_field - Types and structures:
list_local_types,declare_c_type,get_defined_structures,analyze_struct_detailed,get_struct_info_simple,search_structures,get_stack_frame_variables,set_function_prototype,set_local_variable_type,set_global_variable_type - Renaming and comments:
rename_function,rename_local_variable,rename_stack_frame_variable,rename_global_variable,set_comment - Data access and patching:
read_memory_bytes,data_read_{byte,word,dword,qword,string},get_global_variable_value_{by_name,at_address},patch_address_assembles
Notes:
decompile_functionrequires a valid Hex-Rays license; otherwise usedisassemble_function.- Address parameters are accepted as integers or hex strings by MCP entry points and are converted internally; results commonly encode addresses as hex strings.
Requirements
- Python: 3.11+
- IDA: IDA Pro 9.1.0 or later installed.
- uv is recommended for Python package and project management. See uv documentation for installation instructions.
Environment Variables
Configure the executable path according to ida-domain's documentation.
export IDADIR="[IDA Installation Directory]"
Headless executables (idat/idat64) must be available in the specified IDA installation directory.
Installation
Make sure to set up the environment variable as described above before running the MCP server.
Run with uvx
The simplest way to run the MCP server without installing anything is via uvx:
uvx ida-domain-mcp --transport http://127.0.0.1:8744
Install from PyPI
You can install the package as a dependency of your project from PyPI:
# With uv
uv init
uv add ida-domain-mcp
# Or with pip
pip install ida-domain-mcp
Running the MCP server
Two transport modes are supported by the server entrypoint ida-domain-mcp:
-
stdio (default, for direct MCP client integration)
uv run ida-domain-mcp --transport stdio
-
HTTP SSE (useful with the MCP Inspector and remote clients)
uv run ida-domain-mcp --transport http://127.0.0.1:8744
You can then connect with the MCP Inspector for quick exploration:
npx @modelcontextprotocol/inspector # Point it to: http://127.0.0.1:8744/sse
Testing
Clone the repository and install the dependencies:
git clone https://github.com/xxyyue/ida_domain_mcp
cd ida_domain_mcp
uv sync
A simple dual-database test is provided:
# Start the server first (SSE mode)
uv run ida-domain-mcp --transport http://127.0.0.1:8744
# In another shell, run the test client
uv run tests/test_ida_mcp.py http://127.0.0.1:8744/sse
# Or, run the test agent
echo "OPENAI_API_KEY=sk-..." > .env
uv run tests/agent.py
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ida_domain_mcp-0.1.2.tar.gz.
File metadata
- Download URL: ida_domain_mcp-0.1.2.tar.gz
- Upload date:
- Size: 32.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0160039b1676ef5d24db57f866db92a93bcaebd1471203f88fed88a473ff0984
|
|
| MD5 |
107e9df03b0bf98e9c9a16b372b520c4
|
|
| BLAKE2b-256 |
a5fd1c7e983a6346832cee8b576289214a64fb70cc72819553223ce51e87766b
|
File details
Details for the file ida_domain_mcp-0.1.2-py3-none-any.whl.
File metadata
- Download URL: ida_domain_mcp-0.1.2-py3-none-any.whl
- Upload date:
- Size: 28.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e0161f2f7b565307b94b78a0eeb9d53c07245d36aaf89f35740f4295ea68151
|
|
| MD5 |
602b1d55d716d64e6a9aff999446ade4
|
|
| BLAKE2b-256 |
7a2f8af5876935a9b25220d1b9f09d67bebaea5696f7b065c3e16470ee6d6970
|