update_game_title
Modify the title of an RPG Maker MZ/MV game project to reflect changes in your game's name or branding.
Instructions
Update the game title
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes |
Implementation Reference
- src/tools/systemTools.ts:139-145 (handler)The implementation of the update_game_title tool handler.
export async function updateGameTitle(projectPath: string, title: string): Promise<void> { const system = await getSystem(projectPath); system.gameTitle = title; const systemPath = getDataPath(projectPath, 'System.json'); await writeJsonFile(systemPath, system); } - src/index.ts:616-624 (schema)The MCP tool registration and input schema definition.
name: 'update_game_title', description: 'Update the game title', inputSchema: { type: 'object', properties: { title: { type: 'string' }, }, required: ['title'], }, - src/index.ts:776-778 (registration)The switch case that routes the request to the updateGameTitle handler.
case 'update_game_title': await systemTools.updateGameTitle(this.projectPath, args.title); return { success: true };