get_node_types
Retrieve detailed descriptions of node types for a specified programming language, enabling structured code analysis and context management using tree-sitter.
Instructions
Get descriptions of common node types for a language.
Args:
language: Language name
Returns:
Dictionary of node types and descriptions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | Yes |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"title": "Language",
"type": "string"
}
},
"required": [
"language"
],
"title": "get_node_typesArguments",
"type": "object"
}