IDA MCP Server
IDA Pro Plugin for serving MCP SSE server for cursor / claude
What is IDA MCP Server?
IDA MCP Server is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to ida pro plugin for serving mcp sse server for cursor / claude
IDA Pro Plugin for serving MCP SSE server for cursor / claude
This server falls under the Developer Tools and Security categories on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- IDA Pro Plugin for serving MCP SSE server for cursor / claud
Use Cases
Maintainer
Works with
Installation
Manual Installation
npx ida-mcp-server-pluginConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use IDA MCP Server
The IDA MCP Server Plugin integrates IDA Pro 9.0+ with AI assistants like Claude and Cursor by running a local SSE-based MCP server inside the disassembler. Once installed as an IDA plugin, it automatically starts listening on port 3000 and exposes over 20 reverse-engineering tools — from disassembly and decompilation to cross-reference analysis and data-type extraction. Security researchers and reverse engineers use it to query binary internals in natural language without leaving their AI coding environment.
Prerequisites
- IDA Pro version 9.0 or later (commercial license required)
- Python available in the IDA Pro environment with pip for installing dependencies
- An MCP-compatible client such as Claude Desktop, Cursor, or VS Code with MCP support
- Network access to localhost port 3000 (the server binds to 127.0.0.1:3000)
Install Python dependencies
Clone the repository and install the required Python packages. These are needed for the SSE server that the plugin starts inside IDA Pro.
pip install -r requirements.txtCopy the plugin to IDA Pro's plugins directory
Place the ida-mcp-server.py file into the IDA Pro plugins folder for your operating system. IDA Pro loads all .py files from this directory at startup.
# Windows
copy ida-mcp-server.py "%ProgramFiles%\IDA Pro 9.0\plugins\"
# Linux
cp ida-mcp-server.py ~/.idapro/plugins/
# macOS
cp ida-mcp-server.py ~/Library/Application\ Support/IDA\ Pro/plugins/Open a binary in IDA Pro
Launch IDA Pro and open any binary file for analysis. The MCP server plugin starts automatically as part of IDA's plugin initialization — no manual activation is required.
Configure your MCP client to connect via SSE
Add the IDA Pro MCP server to your client's configuration using the SSE transport type. The server listens on http://127.0.0.1:3000/sse by default.
{
"mcpServers": {
"IDAPro": {
"url": "http://127.0.0.1:3000/sse",
"type": "sse"
}
}
}Use AI assistant to analyze the binary
With the binary open in IDA Pro and the MCP server running, your AI assistant can now call any of the exposed tools to retrieve disassembly, decompiled code, cross-references, imports, exports, and more.
IDA MCP Server Examples
Client configuration (SSE transport)
Add this to your MCP client config file (e.g., mcp.json or claude_desktop_config.json). The server runs inside IDA Pro on port 3000.
{
"mcpServers": {
"IDAPro": {
"url": "http://127.0.0.1:3000/sse",
"type": "sse"
}
}
}Prompts to try
Example queries you can send to your AI assistant once the IDA Pro MCP server is running and a binary is open.
- "Show me the disassembly of the main function"
- "Decompile the function at address 0x401000"
- "What functions call sub_401A30? Show all cross-references to it"
- "List all imported functions and their addresses"
- "Find all strings in the binary that contain 'password'"
- "Get the bytes at offset 0x402050 and explain what instruction this is"Troubleshooting IDA MCP Server
Plugin does not start or port 3000 is not listening after opening IDA Pro
Verify that all Python dependencies from requirements.txt were installed into the same Python environment IDA Pro uses. Check the IDA Pro output window for import errors. Also ensure no other application is using port 3000.
AI client cannot connect to the SSE endpoint
Confirm IDA Pro is open and a binary is loaded — the server only starts after plugin initialization. Try opening http://127.0.0.1:3000/sse in a browser to verify connectivity. Check firewall rules that might block loopback traffic.
IDA Pro 8.x or earlier — plugin fails to load
This plugin requires IDA Pro 9.0 or later due to API changes. Older versions are not supported. Verify your IDA version via Help > About.
Frequently Asked Questions about IDA MCP Server
What is IDA MCP Server?
IDA MCP Server is a Model Context Protocol (MCP) server that ida pro plugin for serving mcp sse server for cursor / claude It connects AI assistants to external tools and data sources through a standardized interface.
How do I install IDA MCP Server?
Follow the installation instructions on the IDA MCP Server GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.
Which AI clients work with IDA MCP Server?
IDA MCP Server works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is IDA MCP Server free to use?
Yes, IDA MCP Server is open source and available under the MIT license. You can use it freely in both personal and commercial projects.
IDA MCP Server Alternatives — Similar Developer Tools Servers
Looking for alternatives to IDA MCP Server? Here are other popular developer tools servers you can use with Claude, Cursor, and VS Code.
Ecc
★ 188.2kThe agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Javaguide
★ 155.8kJava 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Gemini CLI
★ 104.5kA secure MCP server that wraps the Google Gemini CLI, allowing clients to query Gemini models using local OAuth sessions without requiring an API key. It provides tools for model interaction and diagnostics with built-in protection against command in
Awesome MCP Servers
★ 87.3k⭐ Curated list of Model Context Protocol (MCP) servers - tools that extend Claude Desktop, Cursor, Windsurf, and other MCP clients with custom capabilities.
MCP Servers
★ 86.0kModel Context Protocol Servers
CC Switch
★ 77.5kA cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io
Browse More Developer Tools MCP Servers
Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up IDA MCP Server in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use IDA MCP Server?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.