list_project_files
List files in a Godot project directory, with optional filtering by file extension and subdirectory. Supports pagination with cursor and limit.
Instructions
List project files, optionally filtered by extension
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum files returned per page. Default: 1000 | |
| cursor | No | Zero-based cursor from a previous response. Default: 0 | |
| extensions | No | Optional file extensions to filter by (e.g., [".gd", ".tscn"]). Include the dot. | |
| projectPath | Yes | Godot project path | |
| subdirectory | No | Optional subdirectory to search in (e.g., "scripts/player") |