idalib-mcp-headless
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., "@idalib-mcp-headlessOpen C:\samples\malware.exe for analysis"
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.
idalib MCP Headless
Fresh headless MCP supervisor for IDA Pro 9.x through idalib.
This project keeps the IDA-facing tool surface compatible with mrexodia/ida-pro-mcp by using that package at runtime, then adds a thin supervisor layer for:
multiple independent worker processes, one per open database/debug session;
command-line IDA installation selection with
--ida-home;a simple browser UI for listing and closing instances;
MCP management tools such as
idalib_open,idalib_list, andidalib_close.
Install
Use a project virtual environment with a Python supported by IDA/idapro and the upstream MCP package.
cd D:\Projects\idalib-mcp
python -m venv .venv
.\.venv\Scripts\Activate.ps1
pip install -e .After the project is published, installation can use the GitHub archive directly:
pip install https://github.com/nyaoouo/idalib-mcp/archive/refs/heads/main.zipIf the idapro Python package is not already available, install it from your IDA installation:
pip install D:\tools\IDA_PRO_9.1\idalib\python--ida-home configures idalib for the worker process without rewriting your normal %APPDATA%\Hex-Rays\IDA Pro\ida-config.json.
MCP Client Setup
Print generic MCP client snippets:
idalib-mcp-headless --config --ida-home D:\tools\IDA_PRO_9.1List supported client targets:
idalib-mcp-headless --list-clientsInstall project-level MCP config for a supported client:
idalib-mcp-headless --install cursor --scope project --ida-home D:\tools\IDA_PRO_9.1Install a stdio config that lets the MCP client launch the headless server itself:
idalib-mcp-headless --install claude --transport stdio --scope global --ida-home D:\tools\IDA_PRO_9.1In stdio mode the MCP protocol still uses stdin/stdout, and the instance manager is started as a local HTTP sidecar. The server writes the web UI URL to stderr, for example:
Instance UI: http://127.0.0.1:8745/instancesIf the configured port is already in use, stdio mode retries with an ephemeral port and prints the actual URL.
Install an HTTP config when you run the server separately:
idalib-mcp-headless --install vscode --transport streamable-http --scope project --host 127.0.0.1 --port 8745Remove config entries with --uninstall, for example:
idalib-mcp-headless --uninstall cursor --scope projectThis project is headless, so the installer only updates MCP client configuration. There is no IDA GUI plugin to install.
Run
idalib-mcp-headless --ida-home D:\tools\IDA_PRO_9.1 --host 127.0.0.1 --port 8745 --max-workers 4Open the instance manager at:
http://127.0.0.1:8745/instancesConnect MCP clients to:
http://127.0.0.1:8745/mcpDebugger tools are inherited from the upstream package and are hidden behind the dbg extension. Start the server with --unsafe, then connect to:
http://127.0.0.1:8745/mcp?ext=dbgEach idalib_open call creates or reuses a distinct worker process. Normal upstream tools receive an optional database argument at the supervisor layer so calls can target a specific session by session id, filename, or path.
Useful Commands
Open a database through MCP:
{"name":"idalib_open","arguments":{"input_path":"C:\\path\\to\\sample.exe","session_id":"sample-a"}}List instances through MCP:
{"name":"idalib_list","arguments":{}}Close an instance through MCP:
{"name":"idalib_close","arguments":{"session_id":"sample-a"}}The browser UI uses the same supervisor session table and calls the close operation server-side. When closing an instance from the browser UI, choose whether to save the IDB before the worker is stopped.
Validation
Run the dependency-free local checks:
python -m unittest discover -s tests -p "test*.py"
python -m py_compile src\idalib_mcp\config.py src\idalib_mcp\installer.py src\idalib_mcp\worker.py src\idalib_mcp\server.pyFor an end-to-end IDA smoke test, install the dependencies in a virtual environment and start the server with the --ida-home path shown above.
This server cannot be installed
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
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/nyaoouo/idalib-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server