treesitter_get_supported_languages
Get a list of programming languages supported by the analyzer to check compatibility before parsing. Optionally write the output to a file to manage large result sets.
Instructions
Get a list of programming languages supported by the analyzer.
Args: output_file: If provided, writes result to this file instead of returning. Useful for large outputs to prevent context overload.
Returns: List of supported language names (e.g., ['python', 'c', 'cpp']) OR if output_file is set: {"status": "written", "output_file": "...", "bytes_written": N}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| output_file | No |