Skip to content
VS Code

glbforge for VS Code

dev.glbforge/glbforge

Make AI-generated 3D assets web-ready: budgets, SSIM-verified optimization, STL/USDZ export.

client:VS Code transport:stdio runtime:npm

Install glbforge in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "meshy-api-key",
      "description": "MESHY_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "glbforge": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@glbforge/mcp"
      ],
      "env": {
        "MESHY_API_KEY": "${input:meshy-api-key}"
      }
    }
  }
}

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

glbforge in other clients