Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Transports: stdio vs HTTP
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. IDA Pro MCP
I
Health: Not checked yetWe have not completed a health check for this listing yet.No health check has run yet.

IDA Pro MCP

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Deterministic, local-first MCP server for IDA Pro and IDA Home with 109 strict-schema reverse-engineering operations, policy-gated mutations, and evidence tracking.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

One-click editor setup isn’t available for this listing yet β€” we don’t have a confirmed install command, and we’d rather show nothing than point your editor at the wrong package or host. Follow the project’s own setup instructions, linked above.

Manual Client & Custom JSON ConfigExpand JSON β–Ύ
No confirmed setup config for this listing yet. We only publish a config block when the install details come from the project itself β€” its README, its docs, or a verified owner. We haven’t found those for IDA Pro MCP, and we’d rather show nothing than a guess you’d paste into your client. Follow the project’s own setup instructions for the current steps.
Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

IDA Pro 9.0+ Python 3.11+ MCP 2.0 40 Tools Session Support


πŸ”¬ IDA Pro MCP Server
Standalone Model Context Protocol for IDA Pro

AI-powered reverse engineering without launching IDA Pro GUI.
40 comprehensive tools for binary analysis, decompilation, and annotation.
Multi-session support - multiple LLMs can analyze the same binary simultaneously.
Works with Claude, Gemini, Cursor, VS Code, and any MCP-compatible client.


⚑ Quick Start

1. Install for Google Antigravity / IDE Integration

bash
cd ida-pro-mcp
python install_antigravity.py

This adds the MCP server to your IDE's mcp_config.json. Restart your IDE.

2. Or Add Manually to MCP Config

config.json
{
    "mcpServers": {
        "ida-pro-mcp": {
            "type": "stdio",
            "command": "python",
            "args": ["C:/path/to/ida-pro-mcp/ida_mcp_stdio.py"],
            "env": {
                "IDADIR": "C:/Program Files/IDA Professional 9.2"
            }
        }
    }
}

3. Use It

python
# Get IDB metadata
idb(idb="C:/samples/malware.exe.i64", action="meta")

# List all functions
data(idb="C:/samples/malware.exe.i64", action="functions", count=50)

# Decompile a function
code(idb="C:/samples/malware.exe.i64", action="decompile", addrs="0x401000")

# Search for patterns
search(idb="C:/samples/malware.exe.i64", action="bytes", pattern="48 83 EC ?? 48 8B")

🎯 Architecture

Code
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”     MCP Protocol     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚   AI Client     │◄────────────────────►│  ida_mcp_stdio   β”‚
β”‚ (Claude, Gemini)β”‚      stdio           β”‚  (Python)        β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜                      β””β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                                                  β”‚ spawns
                                                  β–Ό
                                         β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
                                         β”‚    idat.exe      β”‚
                                         β”‚  (Headless IDA)  β”‚
                                         β”‚   per-request    β”‚
                                         β””β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                                                  β”‚ IDAPython
                                                  β–Ό
                                         β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
                                         β”‚  api_consolidatedβ”‚
                                         β”‚   23 tools       β”‚
                                         β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Key Features:

  • Fully Standalone: No IDA GUI required - uses headless idat.exe
  • MCP Stdio Protocol: Works with any MCP-compatible client
  • 40 Comprehensive Tools: Covers all reverse engineering needs
  • Session Management: Multiple LLMs can analyze the same binary with separate IDBs
  • File Locking: Automatic lock detection prevents conflicts
  • Structured Errors: Clear error codes for LLM understanding

πŸ“¦ Complete Tool Reference

Session Management

ToolDescriptionKey Actions
sessionMulti-file/multi-LLM mgmtdiscover, create, list, switch, close

Sessions enable:

  • Multiple LLMs analyzing the same binary with separate IDBs
  • Seamless switching between multiple open files
  • Automatic file locking to prevent conflicts
  • IDB discovery with "in use" status

Static Analysis Tools

ToolDescriptionKey Actions
idbDatabase metadatameta, segments, cursor, entrypoints
codeDecompilation & disassemblydecompile, disassemble, xrefs_to, xrefs_from, graph
dataData enumerationfunctions, globals, strings, imports, exports
searchPattern searchbytes, string, immediate, name, pattern
typesType managementlist, get, define, apply, get_members

Modification Tools

ToolDescriptionKey Actions
modifyRename, comment, patchrename, comment, set_type, patch
funcsFunction managementcreate, delete, set_flags, add_comment
segmentsSegment managementlist, add, delete, set_attr
bulkBatch operationsrename, comment, set_type, import_json, export_json
comments_aiAI-optimized commentsget_context, set_structured, bulk_set, export_md

Advanced Analysis Tools

ToolDescriptionKey Actions
agentHigh-level helpersanalyze_function, explore_address, find_references, search_all
microcodeHex-Rays IRget, blocks, instructions
graphGraph exportcallgraph, cfg
memoryMemory read/writeread, write
ctreeHex-Rays AST accessget, find_calls, find_vars, find_strings, find_conditions
diffBinary diffingfunctions, bytes, signatures, names, summary
luminaCloud function recognitionpull, push, status, history, search
symbolsDebug symbols (PDB/DWARF)load_pdb, load_dwarf, status, apply, export
patternsFLIRT pattern matchinggenerate, match, list_sigs, apply_sig, create_sig
structsStruct recoveryrecover, analyze_usage, list, create, apply
emulateCode emulationsnippet, appcall, trace, decrypt_strings, eval_expr
exportMulti-format exportlisting, html, idc, json, binexport, headers
historyDB version controlundo, redo, list, snapshot, restore, diff
strings_xrefAdvanced string analysisanalyze, xref_chain, detect_encoded, find_format, clusters
entropyEntropy analysissection, region, packed_detect, crypto_detect, compare
imports_deepDeep import analysisthunks, delay, forwarded, ordinal, api_sets, resolve
trace_analysisExecution trace analysisimport_trace, analyze_coverage, find_loops, extract_api_calls
hooksHook script generationsuggest, generate_frida, generate_detours, find_targets
taintStatic taint analysistrace_arg, trace_return, find_sinks, data_flow, slice
coverageCode coverage analysisimport_drcov, import_lighthouse, highlight, report, uncovered

Utility Tools

ToolDescriptionKey Actions
miscPython exec, signaturespython, idc, load_sig, bookmarks
filesDatabase I/Osave, close, open, batch
pluginsPlugin managementlist, run
traceDebugger tracesget, clear, set_options
fixupsRelocationslist, get, add, delete
data_opsData creationmake_data, make_array, make_string, make_code
debugDebugger controlstart, stop, continue, step, breakpoints, regs
navNavigation helpersbookmarks, goto, cursor, interesting
colorizeCode coloringset_func, set_range, get, clear, palette

πŸ”Œ Supported MCP Clients

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Developer Tools View all alternatives
  • Ovecc logoOvecc

    Architecture guardrails for AI-written code: dependency graph, impact, dead code, CI gate

    πŸ’» Developer Tools2 views
    Compare vs Ovecc β†’
  • Exogram Authority Runtime logoExogram Authority Runtime

    Model Context Protocol server for the Exogram Authority Runtime.

    πŸ’» Developer Tools2 views
    Compare vs Exogram Authority Runtime β†’
  • ToughTongue AI logoToughTongue AI

    Create voice-agent scenarios, pull session analytics, place SIP calls, schedule meeting bots.

    πŸ’» Developer Tools2 views
    Compare vs ToughTongue AI β†’
  • Mastercard Developers MCP logoMastercard Developers MCP

    Access Mastercard Developers APIs, documentation, and API specifications through MCP.

    πŸ’» Developer Tools2 views
    Compare vs Mastercard Developers MCP β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about IDA Pro MCP

We don't have a confirmed install command for IDA Pro MCP yet, so we don't publish a generated one β€” a guessed package name would point at the wrong package or none at all. Follow the project's own README or setup instructions (https://github.com/GrecAndrei/ida-pro-mcp) for the current steps.

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewIDA Pro MCP AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/ida-pro-mcp?style=directory)](https://allmcps.com/mcp/ida-pro-mcp)
HTML Embed
<a href="https://allmcps.com/mcp/ida-pro-mcp"><img src="https://allmcps.com/api/badge/ida-pro-mcp?style=directory" alt="IDA Pro MCP on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
AuthOther
MaintenanceExperimental
Last updatedSep 20, 2026
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
37Quality signal: Fair Β· 37/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools19/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge and attach your website β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to IDA Pro MCP β†’Install in Claude DesktopInstall in CursorInstall in VS Code