get_completions
Get context-aware code completion suggestions at a specific file position or for a given symbol name. Enter file, line, and column, or a symbol like "Container.member" to retrieve relevant completions.
Instructions
Get code completion suggestions at a position. Context-aware suggestions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | No | Path to the file (relative to project root) | |
| line | No | Line number (1-based) | |
| column | No | Column number (1-based) | |
| symbol | No | Name of the symbol to target, instead of line/column. Qualify as "Container.member" (e.g. "UserService.getUser") to disambiguate. Combine with "file" to restrict the search to one file. An ambiguous name returns an error listing the candidates. |