Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DEBUG | No | Set to "true" for verbose logging. | |
| GODOT_PATH | No | The path to the Godot executable. If Godot is already on your system PATH, you can omit this entirely as the server will auto-detect it. |
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| launch_editor | Launch Godot editor for a specific project |
| run_project | Run the Godot project and capture output |
| get_debug_output | Get the current debug output and errors |
| stop_project | Stop the currently running Godot project |
| list_projects | List Godot projects in a directory |
| get_project_info | Retrieve metadata about a Godot project, or just the Godot version if no projectPath is provided |
| take_screenshot | Capture a PNG screenshot of the running Godot project viewport. Requires run_project first. |
| simulate_input | Simulate input in a running Godot project. Supports batched sequential actions with delays. Requires run_project first. Types: key, mouse_button, mouse_motion, click_element, action, wait |
| get_ui_elements | Get visible Control UI elements from a running project with positions, types, and text. Use before click_element. Requires run_project first. |
| run_script | Execute a custom GDScript in the running Godot project. Script must define: extends RefCounted and func execute(scene_tree: SceneTree) -> Variant. Has full access to the live scene tree. Requires run_project first. |
| manage_scene | Manage Godot scene files. Operations:
|
| manage_uids | Manage UIDs in a Godot 4.4+ project. Operations:
|
| manage_node | Manage nodes within a Godot scene. Operations:
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |