ghidralens for VS Code
io.github.hellosverre/ghidralens
Interactive Ghidra views in your AI client: decompile, rename, and navigate a binary.
client:VS Code
transport:stdio
runtime:npm
Install ghidralens in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ghidralens-token",
"description": "GHIDRALENS_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "ghidralens-bridge-url",
"description": "GHIDRALENS_BRIDGE_URL",
"password": true
}
],
"servers": {
"ghidralens": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"ghidralens"
],
"env": {
"GHIDRALENS_TOKEN": "${input:ghidralens-token}",
"GHIDRALENS_BRIDGE_URL": "${input:ghidralens-bridge-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs