Find component relations
find_component_relationsRetrieve all child/parent components, hooks, stores, endpoints, and file imports for a given component or route name to avoid manual grepping.
Instructions
Given a component or route name, return everything related: child components it renders, parents that render it, hooks/stores used, endpoints it calls, and file import relationships. Use instead of grepping for usages.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | component or route name, e.g. LoginPage or /login | |
| detail | No | compact (default) = terse line output; full = expanded lists | |
| max_tokens | No | response token budget (default 2000) |