IDA MCP Server
A Model Context Protocol server for IDA interaction and automation. This server provides tools to read IDA database via Large Language Models.
MxIris-Reverse-Engineering
Tools
ida_get_function_assembly_by_name
Get assembly code for a function by name
ida_get_function_assembly_by_address
Get assembly code for a function by address
ida_get_function_decompiled_by_name
Get decompiled pseudocode for a function by name
ida_get_function_decompiled_by_address
Get decompiled pseudocode for a function by address
ida_get_global_variable_by_name
Get information about a global variable by name
ida_get_global_variable_by_address
Get information about a global variable by address
ida_get_current_function_assembly
Get assembly code for the function at the current cursor position
ida_get_current_function_decompiled
Get decompiled pseudocode for the function at the current cursor position
ida_rename_local_variable
Rename a local variable within a function in the IDA database
ida_rename_global_variable
Rename a global variable in the IDA database
ida_rename_function
Rename a function in the IDA database
ida_rename_multi_local_variables
Rename multiple local variables within a function at once in the IDA database
ida_rename_multi_global_variables
Rename multiple global variables at once in the IDA database
ida_rename_multi_functions
Rename multiple functions at once in the IDA database
ida_add_assembly_comment
Add a comment at a specific address in the assembly view of the IDA database
ida_add_function_comment
Add a comment to a function in the IDA database
ida_add_pseudocode_comment
Add a comment to a specific address in the function's decompiled pseudocode
ida_execute_script
Execute a Python script in IDA Pro and return its output. The script runs in IDA's context with access to all IDA API modules.
ida_execute_script_from_file
Execute a Python script from a file path in IDA Pro and return its output. The file should be accessible from IDA's process.
README
IDA MCP Server
[!NOTE] The idalib mode is under development, and it will not require installing the IDA plugin or running IDA (idalib is available from IDA Pro 9.0+).
Overview
A Model Context Protocol server for IDA interaction and automation. This server provides tools to read IDA database via Large Language Models.
Please note that mcp-server-ida is currently in early development. The functionality and available tools are subject to change and expansion as we continue to develop and improve the server.
Installation
Using uv (recommended)
When using uv
no specific installation is needed. We will
use uvx
to directly run mcp-server-ida.
Using PIP
Alternatively you can install mcp-server-ida
via pip:
pip install mcp-server-ida
After installation, you can run it as a script using:
python -m mcp_server_ida
IDA-Side
Copy repository/plugin/ida_mcp_server_plugin.py
and repository/plugin/ida_mcp_server_plugin
directory into IDAs plugin directory
Windows: %APPDATA%\Hex-Rays\IDA Pro\plugins
Linux/macOS: $HOME/.idapro/plugins
eg: ~/.idapro/plugins
igors-tip-of-the-week-103-sharing-plugins-between-ida-installs
Configuration
Usage with Claude Desktop
Add this to your claude_desktop_config.json
:
<details> <summary>Using uvx</summary>
"mcpServers": {
"git": {
"command": "uvx",
"args": [
"mcp-server-ida"
]
}
}
</details>
<details> <summary>Using pip installation</summary>
"mcpServers": {
"git": {
"command": "python",
"args": [
"-m",
"mcp_server_ida"
]
}
}
</details>
Debugging
You can use the MCP inspector to debug the server. For uvx installations:
npx @modelcontextprotocol/inspector uvx mcp-server-ida
Or if you've installed the package in a specific directory or are developing on it:
cd path/to/mcp-server-ida/src
npx @modelcontextprotocol/inspector uv run mcp-server-ida
Running tail -n 20 -f ~/Library/Logs/Claude/mcp*.log
will show the logs from the server and may
help you debug any issues.
Development
If you are doing local development, there are two ways to test your changes:
-
Run the MCP inspector to test your changes. See Debugging for run instructions.
-
Test using the Claude desktop app. Add the following to your
claude_desktop_config.json
:
UVX
{
"mcpServers": {
"git": {
"command": "uv",
"args": [
"--directory",
"/<path to mcp-server-ida>",
"run",
"mcp-server-ida"
]
}
}
Alternatives
Screenshots
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
AIO-MCP Server
🚀 All-in-one MCP server with AI search, RAG, and multi-service integrations (GitLab/Jira/Confluence/YouTube) for AI-enhanced development workflows. Folk from
Persistent Knowledge Graph
An implementation of persistent memory for Claude using a local knowledge graph, allowing the AI to remember information about users across conversations with customizable storage location.
Hyperbrowser MCP Server
Welcome to Hyperbrowser, the Internet for AI. Hyperbrowser is the next-generation platform empowering AI agents and enabling effortless, scalable browser automation. Built specifically for AI developers, it eliminates the headaches of local infrastructure and performance bottlenecks, allowing you to
React MCP
react-mcp integrates with Claude Desktop, enabling the creation and modification of React apps based on user prompts