get_project_info
Retrieve essential metadata from a Godot project directory, such as project settings and structure information, to facilitate analysis or integration with tools.
Instructions
Retrieve metadata about a Godot project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectPath | Yes | Path to the Godot project directory |
Input Schema (JSON Schema)
{
"properties": {
"projectPath": {
"description": "Path to the Godot project directory",
"type": "string"
}
},
"required": [
"projectPath"
],
"type": "object"
}