get_implementations
Find all classes that implement a specified interface or extend a base class. Retrieves implementations for dependency analysis.
Instructions
Find all classes that implement or extend a given interface or base class. Use when you know the interface name. For full hierarchy tree (ancestors + descendants) use get_type_hierarchy instead. Read-only. Returns JSON: { implementations: [{ symbol_id, name, kind, file, line }], total }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Interface or base class name (e.g. UserRepositoryInterface) |