get_variables
Retrieve all variable names from RPG Maker MZ/MV projects to manage game data and configure events, items, and actors within the MCP server.
Instructions
Get all game variable names
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/systemTools.ts:31-34 (handler)The implementation of the get_variables tool which retrieves the variables list from the System.json file.
export async function getVariables(projectPath: string): Promise<string[]> { const system = await getSystem(projectPath); return system.variables; }