get_quick_info
Get type and documentation for a symbol at the cursor in TypeScript or JavaScript code. Provide file path, content, line, and offset to receive hover info.
Instructions
Get type and documentation at the cursor (hover)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| line | Yes | Cursor line (1-based) | |
| offset | Yes | Cursor column (1-based) | |
| filePath | Yes | File path (absolute or relative to project root) | |
| fileContent | Yes | File content (TypeScript/JavaScript source code) | |
| projectPath | No | Project root (directory with node_modules/tsconfig). When set, the server reads project files from disk so imports (e.g. zod) and cross-file features work. |