class-info
Retrieve methods, properties, signals, and enums for a Godot class to find available members before creating nodes, setting properties, or calling runtime methods.
Instructions
[compact alias of query_class_info] Get detailed information about a specific Godot class: methods, properties, signals, enums. Use to discover available properties before calling add_node/create_resource/set_node_properties, or to find methods before call_runtime_method.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectPath | Yes | Absolute path to project directory containing project.godot. | |
| className | Yes | Exact Godot class name (e.g., "CharacterBody3D", "StandardMaterial3D", "AnimationPlayer") | |
| includeInherited | No | If true, include inherited members from parent classes (default: false — shows only class-specific members) |