🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@cylixlee/ghidra-mcp

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cylixlee/ghidra-mcp

Simple TypeScript implementation of Ghidra MCP

latest
Source
npmnpm
Version
0.2.1
Version published
Maintainers
1
Created
Source

Ghidra MCP

npm version npm downloads license

Ghidra MCP compatible with LaurieWired/GhidraMCP.

This is a simple TypeScript implementation of Ghidra MCP, which alternates the python script in the original repo.

Usage

Install Ghidra Extension

  • Download latest Ghidra extension from upstream releases.
  • In Ghidra: File -> Install Extensions -> + -> select the ZIP -> restart Ghidra
  • Ensure the plugin is enabled: File -> Configure -> Developer -> check GhidraMCPPlugin
  • Verify the HTTP server port: Edit -> Tool Options -> GhidraMCP HTTP Server (default 8080)

Configure MCP

Now let's configure Ghidra MCP for your agent. Don't forget to replace the --server URL if you changed the port in Edit -> Tool Options -> GhidraMCP HTTP Server.

OpenCode

Add to your opencode.jsonc (project) or ~/.config/opencode/opencode.json (global):

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "ghidra": {
      "type": "local",
      "command": ["npx", "-y", "@cylixlee/ghidra-mcp", "--server", "http://127.0.0.1:8080/"],
      "enabled": true
    }
  }
}

Claude Code

Add to .claude/mcp.json (project) or ~/.claude/mcp.json (global):

{
  "mcpServers": {
    "ghidra": {
      "command": "npx",
      "args": ["-y", "@cylixlee/ghidra-mcp", "--server", "http://127.0.0.1:8080/"]
    }
  }
}

CLI Reference

ghidra-mcp — MCP server for Ghidra

Usage:
  ghidra-mcp --server <url> [--sse <port>]

Required:
  --server <url>              Ghidra HTTP server URL

Options:
  --sse <port>                Enable SSE transport on the given port
  -h, --help                  Show this help message

Examples:
  ghidra-mcp --server http://127.0.0.1:8080/              # stdio mode
  ghidra-mcp --server http://127.0.0.1:8080/ --sse 8081   # SSE mode

Keywords

Ghidra

FAQs

Package last updated on 09 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts