Skip to content
VS Code

rpgmaker xp mcp for VS Code

io.github.serifeusstudio/rpgmaker-xp-mcp

Author RPG Maker XP games in natural language: read, write and render RGSS1 .rxdata.

client:VS Code transport:stdio runtime:npm

Install rpgmaker xp mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rpgmaker-project-path",
      "description": "RPGMAKER_PROJECT_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rpgmaker-rtp-path",
      "description": "RPGMAKER_RTP_PATH",
      "password": true
    }
  ],
  "servers": {
    "rpgmaker-xp-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "rpgmaker-xp-mcp"
      ],
      "env": {
        "RPGMAKER_PROJECT_PATH": "${input:rpgmaker-project-path}",
        "RPGMAKER_RTP_PATH": "${input:rpgmaker-rtp-path}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

rpgmaker xp mcp in other clients