.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/blacktop/ida-mcp-rs
home/mcp-servers/blacktop/ida-mcp-rs
blacktop avatar

ida-mcp-rs

byblacktop· 2 MCP servers

Stars

671

Forks

50

Category

Debugging

View on GitHub

TL;DR

  • IDA Pro 9.4 with valid license
  • How to install ida-mcp-rs?

    blacktop/ida-mcp-rs
    $git clone https://github.com/blacktop/ida-mcp-rs

    Installs into the current project.

    ›Prefer a prompt? Paste this to your agent

    Install & use

    Install ida-mcp-rs by running `git clone https://github.com/blacktop/ida-mcp-rs`, then use it for the current task and follow its documentation at https://github.com/blacktop/ida-mcp-rs.

    Files · 1

    View on GitHub
    README.md
    1<p align="center">
    2 <!--<a href="https://github.com/blacktop/ida-mcp-rs"><img alt="Logo" src="https://raw.githubusercontent.com/blacktop/ida-mcp-rs/refs/heads/main/docs/logo.svg" height="400"/></a>-->
    3 <h1 align="center">ida-mcp-rs</h1>
    4 <h4><p align="center">Headless IDA Pro MCP server for AI-powered reverse engineering.</p></h4>
    5 <p align="center">
    6 <a href="https://github.com/blacktop/ida-mcp-rs/actions" alt="Actions">
    7 <img src="https://github.com/blacktop/ida-mcp-rs/actions/workflows/build.yml/badge.svg" /></a>
    8 <a href="https://github.com/blacktop/ida-mcp-rs/releases/latest" alt="Downloads">
    9 <img src="https://img.shields.io/github/downloads/blacktop/ida-mcp-rs/total.svg" /></a>
    10 <a href="https://github.com/blacktop/ida-mcp-rs/releases" alt="GitHub Release">
    11 <img src="https://img.shields.io/github/v/release/blacktop/ida-mcp-rs" /></a>
    12 <a href="http://doge.mit-license.org" alt="LICENSE">
    13 <img src="https://img.shields.io/:license-mit-blue.svg" /></a>
    14</p>
    15<br>
    16 
    17## Prerequisites
    18 
    19- IDA Pro 9.4 with valid license
    20 
    21## Getting Started
    22 
    23### Install
    24 
    25**macOS / Linux** (via [Homebrew](https://brew.sh))
    26```bash
    27brew install blacktop/tap/ida-mcp # Latest (IDA 9.4)
    28```
    29 
    30**macOS (Apple Silicon), older IDA releases** (via versioned Homebrew casks)
    31```bash
    32brew install blacktop/tap/ida-mcp@9.3 # IDA 9.3/9.3sp1
    33brew install blacktop/tap/ida-mcp@9.2 # IDA 9.2
    34```
    35 
    36**Windows** (via [Scoop](https://scoop.sh))
    37```powershell
    38scoop bucket add blacktop https://github.com/blacktop/scoop-bucket
    39scoop install blacktop/ida-mcp
    40```
    41 
    42> **Windows note:** See the [Windows platform setup](#windows) section below for DLL discovery options.
    43 
    44**macOS / Linux** (via [Nix](https://nixos.org))
    45```bash
    46nix shell github:blacktop/nur#ida-mcp \
    47 --extra-experimental-features 'nix-command flakes'
    48```
    49 
    50**Direct download** — grab the archive for your platform from [GitHub Releases](https://github.com/blacktop/ida-mcp-rs/releases).
    51 
    52**Build from source**
    53 
    54See [docs/BUILDING.md](docs/BUILDING.md).
    55 
    56> ida-mcp versions mirror IDA Pro versions (`v9.4.x` for IDA 9.4, `v9.3.x` for IDA 9.3, and `v9.2.x` for IDA 9.2). A version mismatch is detected at startup with a clear error message. Scoop and NUR publish the latest version. For older IDA versions, use the matching [GitHub Release](https://github.com/blacktop/ida-mcp-rs/releases) or, on Apple Silicon, the versioned Homebrew cask.
    57 
    58### Platform Setup
    59 
    60#### macOS
    61 
    62Standard IDA installations in `/Applications` work automatically:
    63```bash
    64claude mcp add ida -- ida-mcp
    65```
    66 
    67If you see `Library not loaded: @rpath/libida.dylib`, set `DYLD_LIBRARY_PATH` to your IDA path:
    68```bash
    69claude mcp add ida -e DYLD_LIBRARY_PATH='/path/to/IDA.app/Contents/MacOS' -- ida-mcp
    70```
    71 
    72Supported paths (auto-detected):
    73- `/Applications/IDA Professional 9.4.app/Contents/MacOS`
    74- `/Applications/IDA Home 9.4.app/Contents/MacOS`
    75- `/Applications/IDA Essential 9.4.app/Contents/MacOS`
    76 
    77#### Linux
    78 
    79The IDA installer defaults to `~/ida-pro-9.4` — the launcher script auto-detects this:
    80```bash
    81claude mcp add ida -- ida-mcp
    82```
    83 
    84For non-default install locations, set `IDADIR`:
    85```bash
    86claude mcp add ida -e IDADIR='/path/to/ida' -- ida-mcp
    87```
    88 
    89Resolution order: `$IDADIR` → `~/ida-pro-9.4` → `/opt/ida-pro-9.4` and other RUNPATH fallbacks.
    90 
    91#### Windows
    92 
    93**Option A** — Install `ida-mcp.exe` into your IDA directory (simplest, no env setup needed):
    94```powershell
    95# Copy the binary next to ida.dll / idalib.dll
    96copy ida-mcp.exe "C:\Program Files\IDA Professional 9.4\"
    97claude mcp add ida -- "C:\Program Files\IDA Professional 9.4\ida-mcp.exe"
    98```
    99 
    100**Option B** — Install via [Scoop](https://scoop.sh) (auto-detects IDA and sets `IDADIR`):
    101```powershell
    102scoop bucket add blacktop https://github.com/blacktop/scoop-bucket
    103scoop install blacktop/ida-mcp
    104claude mcp add ida -- ida-mcp
    105```
    106 
    107**Option C** — Set `IDADIR` manually:
    108```powershell
    109$idaDir = "C:\Program Files\IDA Professional 9.4"
    110[Environment]::Set

    Preview

    blacktop/ida-mcp-rsblacktop/ida-mcp-rs
    Repoblacktop/ida-mcp-rs
    TypeMCP Servers
    CategoryDebugging
    UpdatedJul 2026
    LicenseMIT
    First seenJul 26, 2026

    Tags

    MCPheadlessidalib

    Related

    6 picks
    Type
    1. chromedevtools avatarchrome-devtools-mcpMCP server for Chrome DevToolsMCP ServersJul 202611M48k
    2. ooo0ooo avatarlean-lsp-mcpLean Theorem Prover MCPMCP ServersJul 20261.9M460
    3. wonderwhy-er avatardesktopcommandermcpMCP server for terminal commands, file operations, and process managementMCP ServersJul 2026346k8.9k
    4. avivsinai avatarlangfuse-mcpLangfuse MCP server for accessing and analyzing telemetry data via natural languageMCP ServersJun 202611k101
    5. faraazahmad avatarmcp_debugPostman for your MCP server with a Claude chat that calls your toolsMCP ServersJun 20258.9k14
    6. p3gleg avatartauri-plugin-mcpAllows AI agents (e.g., Cursor, Claude Code) to debug within Tauri apps via screenshot capture, window management, DOM access, and simulated user inputs.MCP ServersJul 20266.2k104