list_resources
Display all registered game assets in your RPG Maker MZ project with filtering options by type and tags to organize development resources.
Instructions
List all registered resources with optional filtering
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_path | Yes | Project path | |
tags | No | Filter by tags | |
type | No | Filter by resource type |
Input Schema (JSON Schema)
{
"properties": {
"project_path": {
"description": "Project path",
"type": "string"
},
"tags": {
"description": "Filter by tags",
"items": {
"type": "string"
},
"type": "array"
},
"type": {
"description": "Filter by resource type",
"type": "string"
}
},
"required": [
"project_path"
],
"type": "object"
}