MCP Catalogs
Home

mcp-server-idapro vs everything

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-idapro
by fdrechsler
everything
by modelcontextprotocol
Stars★ 98★ 85,748
30d uses
Score4177
Official
Categories
SecurityDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit14 mo agothis month

mcp-server-idapro · Summary

An MCP server bridging AI assistants with IDA Pro for reverse engineering tasks.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-server-idapro · Use cases

  • Automating binary analysis tasks in reverse engineering workflows
  • Enabling AI assistants to perform code analysis and malware research
  • Creating intelligent reverse engineering assistants that can explore binaries

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

mcp-server-idapro · Install

Installation

1. Install the IDA Pro Remote Control Plugin

  1. Copy ida_remote_server.py to your IDA Pro plugins directory:

- Windows: %PROGRAMFILES%\IDA Pro\plugins - macOS: /Applications/IDA Pro.app/Contents/MacOS/plugins - Linux: /opt/idapro/plugins

  1. Start IDA Pro and open a binary file.
  2. The plugin will automatically start an HTTP server on 127.0.0.1:9045.

2. Install the MCP Server

  1. Clone this repository
  2. Install dependencies: npm install
  3. Build the project: npm run build
  4. Configure the MCP server in your AI assistant's MCP settings:
{
  "mcpServers": {
    "ida-pro": {
      "command": "node",
      "args": ["path/to/ida-server/dist/index.js"],
      "env": {}
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.