RPG Maker MZ
High-quality MCP server for RPG Maker MZ integration
What is RPG Maker MZ?
RPG Maker MZ is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to high-quality mcp server for rpg maker mz integration
High-quality MCP server for RPG Maker MZ integration
This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- High-quality MCP server for RPG Maker MZ integration
Use Cases
Maintainer
Works with
Installation
Manual Installation
npx rpgmaker-mzConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use RPG Maker MZ
The RPG Maker MZ MCP Server is a TypeScript-based Model Context Protocol server that gives AI assistants direct read and write access to RPG Maker MZ project data. It exposes tools for managing actors, items, weapons, armors, skills (including natural-language skill creation), maps, events, and system configuration — making it possible to build and iterate on RPG Maker MZ games through conversational AI.
Prerequisites
- Node.js 18+ and npm installed
- An existing RPG Maker MZ project on disk
- Claude Desktop or another MCP-compatible client installed
- Git to clone the repository
Clone the repository and install dependencies
Clone the RPG Maker MZ MCP server repository and install its Node.js dependencies.
git clone https://github.com/k4zuki0539/-rpgmaker-mz-mcp.git
cd -rpgmaker-mz-mcp
npm installBuild the TypeScript server
Compile the TypeScript source to the dist/ directory before running the server.
npm run buildSet the RPG Maker MZ project path
The server needs to know where your RPG Maker MZ project lives. Set the RPGMAKER_PROJECT_PATH environment variable to the absolute path of your project folder.
# macOS / Linux
export RPGMAKER_PROJECT_PATH=/path/to/your/rpgmaker/project
# Windows (Command Prompt)
set RPGMAKER_PROJECT_PATH=C:\path\to\your\rpgmaker\projectConfigure Claude Desktop to use the server
Add the server to your Claude Desktop configuration file. On macOS this is at ~/Library/Application Support/Claude/claude_desktop_config.json; on Windows it is at %APPDATA%\Claude\claude_desktop_config.json.
{
"mcpServers": {
"rpgmaker-mz": {
"command": "node",
"args": ["/absolute/path/to/-rpgmaker-mz-mcp/dist/index.js"],
"env": {
"RPGMAKER_PROJECT_PATH": "/absolute/path/to/your/rpgmaker/project"
}
}
}
}Restart Claude Desktop and verify the connection
Restart Claude Desktop after saving the config. The server icon should appear in the Claude interface. You can verify by asking Claude to list actors from your project.
# Start the server manually to test for errors
RPGMAKER_PROJECT_PATH=/path/to/project node dist/index.jsRPG Maker MZ Examples
Client configuration
Full Claude Desktop configuration for the RPG Maker MZ MCP server, pointing to the built dist/index.js file.
{
"mcpServers": {
"rpgmaker-mz": {
"command": "node",
"args": ["/Users/yourname/projects/-rpgmaker-mz-mcp/dist/index.js"],
"env": {
"RPGMAKER_PROJECT_PATH": "/Users/yourname/Documents/RPGMakerMZ/MyGame"
}
}
}
}Prompts to try
Sample prompts to manage actors, skills, maps, and events through Claude.
- "List all actors in my RPG Maker MZ project"
- "Create a new healing skill called 'Cure Light' that restores 150 HP"
- "Show me all events on map 3 and summarize what they do"
- "Update actor 1's name to 'Aria' and change their class to Mage"
- "Add a new item called 'Elixir' that fully restores HP and MP"
- "Create a damage skill named 'Fireball' dealing 300% magic damage to all enemies"Troubleshooting RPG Maker MZ
Server fails to start with 'Cannot find module' error
Run 'npm run build' in the project directory to compile the TypeScript source. The server requires the compiled dist/index.js file to exist before it can launch.
Tools return 'project not found' or file read errors
Verify that RPGMAKER_PROJECT_PATH points to a valid RPG Maker MZ project directory containing a 'data' folder with files like Actors.json and Maps/. Use an absolute path, not a relative one.
Changes made by Claude are not visible in RPG Maker MZ editor
RPG Maker MZ caches project data in memory. Close and reopen your project in the RPG Maker MZ editor after the MCP server modifies JSON files to see the latest changes reflected.
Frequently Asked Questions about RPG Maker MZ
What is RPG Maker MZ?
RPG Maker MZ is a Model Context Protocol (MCP) server that high-quality mcp server for rpg maker mz integration It connects AI assistants to external tools and data sources through a standardized interface.
How do I install RPG Maker MZ?
Follow the installation instructions on the RPG Maker MZ GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.
Which AI clients work with RPG Maker MZ?
RPG Maker MZ works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is RPG Maker MZ free to use?
Yes, RPG Maker MZ is open source and available under the MIT license. You can use it freely in both personal and commercial projects.
RPG Maker MZ Alternatives — Similar Developer Tools Servers
Looking for alternatives to RPG Maker MZ? Here are other popular developer tools servers you can use with Claude, Cursor, and VS Code.
Ecc
★ 188.2kThe agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Javaguide
★ 155.8kJava 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Gemini CLI
★ 104.5kA secure MCP server that wraps the Google Gemini CLI, allowing clients to query Gemini models using local OAuth sessions without requiring an API key. It provides tools for model interaction and diagnostics with built-in protection against command in
Awesome MCP Servers
★ 87.3k⭐ Curated list of Model Context Protocol (MCP) servers - tools that extend Claude Desktop, Cursor, Windsurf, and other MCP clients with custom capabilities.
MCP Servers
★ 86.0kModel Context Protocol Servers
CC Switch
★ 77.5kA cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io
Browse More Developer Tools MCP Servers
Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up RPG Maker MZ in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use RPG Maker MZ?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.