IDA-MCP
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., "@IDA-MCPdecompile function at 0x401000"
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.
IDA-MCP
MCP server that runs inside IDA Pro 9.4 so tools like Cursor / Claude / Cline can talk to your open IDB over HTTP.
Default listen address: 127.0.0.1:8765
Stack: IDAPython + Hex-Rays (when present). No extra pip deps inside IDA.
Install
.\install.ps1 -IdaPath "C:\Program Files\IDA Professional 9.4"Copies the plugin to %APPDATA%\Hex-Rays\IDA Pro\plugins\.
Uninstall:
.\uninstall.ps1Related MCP server: IDA Pro MCP
Usage
Open IDA 9.4 and load an IDB
Edit → Plugins → IDA-MCP → Start (or
Ctrl-Alt-Mto toggle)Stop: Edit → Plugins → IDA-MCP → Stop (or
Ctrl-Alt-Magain)
Point your MCP client at
http://127.0.0.1:8765/mcp
Cursor
%USERPROFILE%\.cursor\mcp.json or project .cursor/mcp.json:
{
"mcpServers": {
"ida-mcp": {
"url": "http://127.0.0.1:8765/mcp"
}
}
}If you set a token in config:
{
"mcpServers": {
"ida-mcp": {
"url": "http://127.0.0.1:8765/mcp",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}More examples under examples/.
Smoke check
Invoke-RestMethod http://127.0.0.1:8765/healthTry: call get_database_info, then list_functions / decompile_function.
Config
%LOCALAPPDATA%\IDA-MCP\config.json
{
"host": "127.0.0.1",
"port": 8765,
"token": "",
"allow_write": false,
"allow_patch": false,
"allow_execution": false,
"max_read_size": 1048576,
"max_call_depth": 20,
"log_level": "INFO"
}Env vars override the file: IDA_MCP_HOST, IDA_MCP_PORT, IDA_MCP_TOKEN, IDA_MCP_ALLOW_WRITE, IDA_MCP_ALLOW_PATCH, IDA_MCP_ALLOW_EXECUTION, …
Logs: %LOCALAPPDATA%\IDA-MCP\ida-mcp.log
Defaults
Bind | localhost only |
Rename / comments / types | off ( |
Byte patching | off ( |
| off (also needs a token) |
Memory reads | capped at 1 MiB |
Don't bind 0.0.0.0 without a token — the server refuses that.
How it works
HTTP JSON-RPC (Streamable HTTP) in a background thread inside IDA. Tool handlers schedule IDA API calls with ida_kernwin.execute_sync so the UI doesn't get trashed from worker threads.
Stdlib only in-process; the optional mcp package in requirements.txt is for external tooling/tests, not required by the plugin.
See docs/architecture.md.
Tools (high level)
There are ~57 tools. The useful ones day-to-day:
DB:
get_database_info,get_entry_pointsFunctions:
list_functions,get_function*,get_disassembly,decompile_functionXrefs / graph:
get_xrefs_*,get_callers,get_callees,trace_call_pathImports / strings:
list_imports,find_import,list_strings,find_stringSearch / memory:
search_bytes,search_text,read_memoryAnalysis helpers:
analyze_function,summarize_function
Writes and patches are separate and gated. Full list: docs/tools.md.
Resources: ida://database, ida://function/0x…, …/pseudocode, …/disassembly.
After code changes
Either restart IDA, or run scripts/reload_ida_mcp.py via File → Script file.
Tests
pip install pytest
pytest tests -qLive checks (IDA must be running with MCP up): tests/_live_mcp_check.py, tests/_live_full_test.py.
Layout
ida_plugin/ plugin entry + package
install.ps1 Windows installer
docs/ architecture / tools / install notes
examples/ MCP client configs
.cursor/skills/ Cursor skill for using the tools
tests/License
MIT — see LICENSE.
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.
Related MCP Servers
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables AI assistants to interact with IDA Pro for reverse engineering and binary analysis tasks.12100MIT
- AlicenseCqualityAmaintenanceMCP Server for automated reverse engineering with IDA Pro.4311,234MIT
- AlicenseBqualityFmaintenanceMCP server for reverse engineering that enables interaction with IDA Pro for analysis tasks such as decompilation, disassembly, and memory engagement reports.2446MIT
- Flicense-qualityDmaintenanceA lightweight MCP server that exposes IDA Pro's disassembly, decompilation, and symbol query capabilities to AI clients, with reduced tool set for lower token consumption.275
Related MCP Connectors
An MCP server that gives your AI access to the source code and docs of all public github repos
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
An MCP server that integrates with Discord to provide AI-powered features.
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/ahmad009/IDA-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server