gograph_callees
Lists all downstream functions and methods called from a given function using static analysis. Understand execution flow and dependencies without side effects.
Instructions
Find and list all downstream functions or methods invoked from inside the specified caller function. BEHAVIOR & SAFETY: This is a 100% local, read-only static analysis tool. It has no side effects, requires no authorization or credentials, has no rate limits, and performs zero destructive modifications. USAGE GUIDELINES: Call this tool when you need to understand the downstream execution flow, dependencies, and external calls of a single function. Do NOT use if you want upstream callers (use gograph_callers instead). COMPLETENESS: Requires 'function' parameter. Returns a complete array of callees, including their package paths and signatures. Example function: 'Serve'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| function | Yes | The name of the calling function to inspect callees for (e.g., 'Serve', 'runMCP') |