get_project_settings
Read Godot project settings from project.godot as structured JSON. Filter by section like 'display' to inspect configuration without launching the engine.
Instructions
Parse project.godot into structured JSON. Use to inspect configured display, input, rendering, etc. settings without launching Godot. Pass section to filter to one INI section (e.g. "display", "application"). Returns: { settings: { [section]: { [key]: value } } } or { settings: { [key]: value } } when section is given. Complex Godot types are returned as raw strings; keys outside any section appear under global.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| section | No | Filter to a specific INI section (e.g. "display", "application"). Omit for all sections. | |
| projectPath | Yes | Path to the Godot project directory |