godot_list_files
Browse and filter files in a Godot project directory with options for extension filtering, recursive search, and pagination to manage project assets.
Instructions
Lists files in the Godot project filesystem under a given directory.
Args:
directory (string, optional): res:// directory path (default: "res://")
filter_type (string, optional): Filter by extension e.g. "tscn", "gd", "png", "tres". Omit for all.
recursive (boolean, optional): Include subdirectories (default: false)
limit (number, optional): Max results (default: 50, max: 200)
offset (number, optional): Pagination offset (default: 0)
Returns: { total, count, offset, has_more, items: [{ path, type, name }] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| directory | No | Directory to list | res:// |
| filter_type | No | File extension filter e.g. 'tscn' | |
| recursive | No | Include subdirectories | |
| limit | No | Max results | |
| offset | No | Pagination offset |