Rupa3D for VS Code
io.github.tiranyx/rupa3d
Checks GLB assets against a spec without Blender and embeds the measured proof inside the GLB.
client:VS Code
transport:stdio
runtime:npm
Install Rupa3D in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "rupa3d-blender",
"description": "RUPA3D_BLENDER",
"password": true
},
{
"type": "promptString",
"id": "rupa3d-ruang",
"description": "RUPA3D_RUANG",
"password": true
}
],
"servers": {
"rupa3d": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"rupa3d"
],
"env": {
"RUPA3D_BLENDER": "${input:rupa3d-blender}",
"RUPA3D_RUANG": "${input:rupa3d-ruang}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs