IDAMCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@IDAMCPList all functions in the binary"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
IDAMCP
IDA Pro plugin that exposes IDA Python execution via MCP (Model Context Protocol) over SSE. This allows AI tools like Claude Code to interact with IDA Pro for reverse engineering tasks.
How It Works
IDAMCP runs an MCP server inside IDA Pro that provides an execute_script tool. AI clients send IDA Python code through MCP, which gets executed on IDA's main thread. Results (stdout, stderr, return values) are sent back to the client.
AI Client (Claude Code, etc.)
│
│ MCP over SSE
▼
IDAMCP Server (127.0.0.1:13337)
│
│ ida_kernwin.execute_sync
▼
IDA Pro Main ThreadRelated MCP server: IDAssistMCP
Requirements
IDA Pro 9.0+
Python 3.12+
Installation
git clone https://github.com/won0-kim/idamcp.git
cd idamcp
uv syncInstall the plugin into IDA's plugins directory:
python install.pyTo specify a custom IDA installation path:
python install.py --ida-dir "C:\Path\To\IDA"To uninstall:
python install.py --uninstallUsage
Open IDA Pro — the MCP server starts automatically on
http://127.0.0.1:13337/mcpToggle the server on/off with Ctrl+Shift+M
Connect your MCP client to the server
MCP Client Configuration
Add to your MCP client config (e.g., .mcp.json):
{
"mcpServers": {
"idamcp": {
"type": "http",
"url": "http://127.0.0.1:13337/mcp"
}
}
}execute_script Tool
The server exposes a single execute_script tool. Send IDA Python code as a string. Assign to __result__ to return a specific value.
# List first 5 functions
import idautils
__result__ = list(idautils.Functions())[:5]# Get function name at address
import idc
__result__ = idc.get_func_name(0x401000)Development
uv sync --all-extras
uv run pytest
uv run ruff check .
uv run ruff format .
uv run pyrightProject Structure
idamcp/
├── idamcp/
│ ├── __init__.py # Package version
│ ├── bridge.py # IDA main thread execution bridge
│ ├── plugin.py # IDA plugin entry point
│ └── server.py # FastMCP server with execute_script tool
├── tests/
│ ├── test_bridge.py
│ └── test_server.py
├── install.py # Development plugin installer
├── idamcp_plugin.py # Standalone plugin entry point
└── pyproject.tomlLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/won0-kim/idamcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server