get_game_title
Retrieve the title of an RPG Maker MZ or MV game project to identify and manage game assets within the MCP server.
Instructions
Get the game title
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/systemTools.ts:131-134 (handler)The handler function that retrieves the game title from the system data.
export async function getGameTitle(projectPath: string): Promise<string> { const system = await getSystem(projectPath); return system.gameTitle; }