Best for
- Game developers working with RPG Maker MV
- Those who want AI-assisted level design and event scripting
- AI agents that need to interact with the project structure via MCP
This server extends the MCP ecosystem to RPG Maker MV, offering unique template-based map generation and project intelligence. The 13 tools cover CRUD, map editing, event management, and system operations. Highlights include knowledge-driven map generation (cloning templates), read-only project analysis (validate, explain, critique, refactor), and optional vision AI. Install is simple via npx. Risks exist but are mitigated with backups and dryRun. Suitable for game developers; note the need for backups and vision AI endpoint configuration.
RPG Maker MV Ultimate MCP server lets an AI agent edit a real RPG Maker MV project on disk — database, maps, events, system — through 13 consolidated tools, validated against the actual engine for coherent output. Its headline feature is knowledge-driven map generation: clones hand-authored reference maps from 106 bundled RTP templates and adapts them to your project's tilesets, falling back to procedural generation for themes without a template. It also offers read-only project intelligence (validates references, explains why an event never fires, critiques maps) and optional Vision-AI image analysis.
Install via npm: add the server to your MCP client config with the command 'npx -y rpgmaker-mv-mcp' and set the RPGMAKER_PROJECT_PATH environment variable to the absolute path of your RPG Maker MV project. No clone required; the package ships an executable. The server starts even without the path; you can call set_project_path at runtime.
{
"mcpServers": {
"rpgmaker-mv": {
"command": "npx",
"args": [
"-y",
"rpgmaker-mv-mcp"
],
"env": {
"RPGMAKER_PROJECT_PATH": "/path/to/your/RPGMakerMV/project"
}
}
}
}