Skip to main content
Glama
Neko1313

graphlens-mcp

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Capabilities

Features and capabilities supported by this server

CapabilityDetails
tools
{
  "listChanged": true
}
logging
{}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
extensions
{
  "io.modelcontextprotocol/ui": {}
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
search_symbolsA

Search for symbols by name using full-text search. ALWAYS start here when you need to find a symbol. Returns node IDs for use with other tools. Supports FTS5 prefix syntax, e.g. 'create_order*'.

get_node_infoA

Get full info for a node: source snippet, signature, kind, file location. Use after search_symbols when you need to read a specific symbol's implementation.

get_file_structureA

Get the symbol outline of a file (classes, functions, methods). Use instead of reading the whole file when you only need structure.

get_calleesA

Return nodes that node_id CALLS (outgoing, up to max_depth hops). Use to understand what a function depends on internally.

get_callersA

Return nodes that CALL node_id (incoming, up to max_depth hops). PRIMARY tool for impact analysis: 'what breaks if I change X?' Walk callers to find the full call chain before touching shared code.

get_neighborsA

Return nodes within depth hops in ANY direction. Use to explore context around an unknown symbol.

find_referencesA

Return nodes that REFERENCE node_id (type annotations, assignments, non-call usages). Use alongside get_callers for complete impact analysis.

get_cross_language_callsA

Return nodes in OTHER languages that communicate with node_id via shared boundaries (HTTP routes, gRPC, queues). Shows cross-service connections.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

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/Neko1313/graphlens-mcp'

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