get_system
Retrieve system data from RPG Maker MZ/MV projects to access game configuration, settings, and metadata for development and management tasks.
Instructions
Get system data
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/systemTools.ts:7-10 (handler)The getSystem function reads the 'System.json' file for the given project path, serving as the core handler for the 'get_system' tool.
export async function getSystem(projectPath: string): Promise<SystemData> { const systemPath = getDataPath(projectPath, 'System.json'); return await readJsonFile<SystemData>(systemPath); }