MCP Catalogs
Home

everything vs ida-headless-mcp

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

everything
by modelcontextprotocol
ida-headless-mcp
by zboralski
Stars★ 85,748★ 115
30d uses
Score7747
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsSecurityAI / LLM Tools
LanguageTypeScriptPython
Last committhis month3 mo ago

everything · Summary

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

ida-headless-mcp · Summary

A headless IDA Pro binary analysis server providing 52 MCP tools for reverse engineering with multi-session concurrency.

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

ida-headless-mcp · Use cases

  • Automated binary analysis in reverse engineering workflows
  • Security auditing of compiled software binaries
  • Integration of IDA Pro capabilities with AI assistants for code analysis
  • Malware analysis through AI-assisted reverse engineering

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

ida-headless-mcp · Install

Installation

  1. Clone the repository:

``bash git clone <repo-url> cd ida-headless-mcp ``

  1. Run setup:

``bash make setup `` This automatically sets up idalib, installs Python dependencies, and builds the Go server.

  1. Start the server:

``bash ./bin/ida-mcp-server `` The server runs on port 17300 by default.

Claude Desktop Configuration

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "ida-headless": {
      "url": "http://127.0.0.1:17300/",
      "type": "http"
    }
  }
}

Manual Setup

For troubleshooting or custom setup:

./scripts/setup_idalib.sh   # Setup idalib
make install-python         # Install Python dependencies
make build                  # Build Go server
Comparison generated from public README + GitHub signals. Last updated automatically.