The all-in-one symbol inspector. Returns the full source code, call relationships (both callers and callees), complexity metrics, and metadata for a single symbol. Use this when you need to deeply understand a specific function or class.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
uri | string | yes | — | File path of the symbol |
line | number | yes | — | Line number where the symbol is defined |
Natural language:
Show me everything about the
parseConfigfunction in src/config/loader.ts
MCP call:
{
"tool": "stellarion_get_detailed_symbol",
"arguments": {
"uri": "src/config/loader.ts",
"line": 34
}
}
Natural language:
Get the full details for the method at line 120 of src/engine/query.rs
MCP call:
{
"tool": "stellarion_get_detailed_symbol",
"arguments": {
"uri": "src/engine/query.rs",
"line": 120
}
}
Returns a comprehensive symbol profile:
stellarion_symbol_search first to find the right symbol, then call this once on the one you care about.stellarion_get_callers and stellarion_get_callees tools support transitive depth, which this tool does not.