Skip to content
VS Code

vrm toolkit mcp for VS Code

io.github.dwarehouse1/vrm-toolkit-mcp

Inspect, validate and preview VRM / VRMA files from an AI agent (5 tools, local stdio server).

client:VS Code transport:stdio runtime:npm

Install vrm toolkit mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vrm-toolkit-chrome",
      "description": "VRM_TOOLKIT_CHROME",
      "password": true
    }
  ],
  "servers": {
    "vrm-toolkit-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "vrm-toolkit-mcp"
      ],
      "env": {
        "VRM_TOOLKIT_CHROME": "${input:vrm-toolkit-chrome}"
      }
    }
  }
}

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

vrm toolkit mcp in other clients