Files
claudetools/mcps/grepai/tools/grepai_trace_callees.json
Mike Swanson c5d4d3527c sync: auto-sync from GURU-5070 at 2026-06-14 20:04:14
Author: Mike Swanson
Machine: GURU-5070
Timestamp: 2026-06-14 20:04:14
2026-06-14 20:05:02 -07:00

33 lines
989 B
JSON

{
"name": "grepai_trace_callees",
"description": "Find all functions called by the specified symbol. Useful for understanding what a function depends on.",
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"compact": {
"description": "Return minimal output without context (default: false)",
"type": "boolean"
},
"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 find callees for",
"type": "string"
},
"workspace": {
"description": "Workspace name for cross-project trace (optional)",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}
}