read_project_info
Extract RPG Maker MZ project details from Game.rpgproject files to access game configuration, settings, and metadata for development workflows.
Instructions
Read RPG Maker MZ project information (Game.rpgproject file)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_path | Yes | Path to the RPG Maker MZ project directory |
Input Schema (JSON Schema)
{
"properties": {
"project_path": {
"description": "Path to the RPG Maker MZ project directory",
"type": "string"
}
},
"required": [
"project_path"
],
"type": "object"
}