33 lines
973 B
JSON
33 lines
973 B
JSON
{
|
|
"name": "grepai_trace_graph",
|
|
"description": "Build a complete call graph around a symbol showing both callers and callees up to a specified depth.",
|
|
"inputSchema": {
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"properties": {
|
|
"depth": {
|
|
"description": "Maximum depth for graph traversal (default: 2)",
|
|
"type": "number"
|
|
},
|
|
"format": {
|
|
"description": "Output format: 'json' (default) or 'toon' (token-efficient)",
|
|
"type": "string"
|
|
},
|
|
"project": {
|
|
"description": "Project name within workspace (requires workspace)",
|
|
"type": "string"
|
|
},
|
|
"symbol": {
|
|
"description": "Name of the function/method to build graph for",
|
|
"type": "string"
|
|
},
|
|
"workspace": {
|
|
"description": "Workspace name for cross-project trace (optional)",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"symbol"
|
|
],
|
|
"type": "object"
|
|
}
|
|
} |