find_external_calls
Identify calls to external dependencies in a repository. Returns caller, callee, and call count sorted by frequency, helping understand runtime dependencies.
Instructions
Return all calls to methods NOT in the indexed repo (callee has no Method node).
These are calls to external libraries, frameworks, or unindexed services.
Returns [{caller_fqn, callee_name, call_count}] sorted by call_count descending.
Useful for: "what external dependencies does this service actually call at runtime?"
Args:
repo_name: The logical name of the indexed repository.
Returns:
List of dicts with keys ``caller_fqn``, ``callee_name``, ``call_count``.
Empty list if the repo is not found or has no external calls.Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo_name | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |