list_projects
Search and list Godot projects within a specified directory using the Godot MCP server. Optionally enable recursive searching to locate projects in subdirectories efficiently.
Instructions
List Godot projects in a directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
directory | Yes | Directory to search for Godot projects | |
recursive | No | Whether to search recursively (default: false) |
Input Schema (JSON Schema)
{
"properties": {
"directory": {
"description": "Directory to search for Godot projects",
"type": "string"
},
"recursive": {
"description": "Whether to search recursively (default: false)",
"type": "boolean"
}
},
"required": [
"directory"
],
"type": "object"
}