Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
GHIDRALENS_TOKENNoShared secret printed by the PyGhidra bridge. Not needed to start the server or list its tools.
GHIDRALENS_BRIDGE_URLNoWhere the PyGhidra bridge is listening.http://127.0.0.1:8799

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}
resources
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
open_binaryA

Load an executable into the Ghidra session and run auto-analysis. Slow the first time for a given file (seconds to minutes); cached in the Ghidra project afterwards. Must be called before anything else.

program_infoA

What is currently open: format, architecture, function count.

decompileA

Decompile one function to C and show it in an interactive view. Identify the function by address (hex) or by name.

list_functionsA

Browse the program's functions in a sortable table. Filter by substring; sort by address, name, size or caller count.

call_graphA

Draw the callers and callees around one function as a navigable graph. Depth is capped at 3 because call graphs fan out exponentially.

find_stringsA

Search defined string data. Usually the fastest way into an unknown binary - find the message, then look at what references it.

xrefs_toB

Everything that references an address.

rename_symbolA

Rename a function, or a local variable inside one. Pass old_name to rename a local; omit it to rename the function itself. This is what a click on an identifier in the decompiler view fires.

add_commentA

Attach a plate comment at an address. Persists into the Ghidra project, so notes made here show up in the Ghidra GUI.

save_programA

Write renames and comments back to the Ghidra project on disk. Nothing is lost without this, but nothing is durable with it either.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription
DecompilerGhidra's C output with every identifier clickable - rename symbols, follow calls, read cross-references without leaving the conversation.
Function BrowserSortable, filterable table of every function in the program.
Call GraphCallers and callees around one function, laid out as a navigable graph.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hellosverre/ghidralens'

If you have feedback or need assistance with the MCP directory API, please join our Discord server