3D AR Studio for VS Code
io.github.nirholas/3d-ar-studio
Put 3D models in someone's real room: generate, arrange, and hand back one AR link.
client:VS Code
transport:stdio
runtime:npm
Install 3D AR Studio in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ar-studio-page-url",
"description": "AR_STUDIO_PAGE_URL",
"password": true
},
{
"type": "promptString",
"id": "ar-studio-assets",
"description": "AR_STUDIO_ASSETS",
"password": true
},
{
"type": "promptString",
"id": "ar-studio-mcp-endpoint",
"description": "AR_STUDIO_MCP_ENDPOINT",
"password": true
},
{
"type": "promptString",
"id": "ar-studio-origin",
"description": "AR_STUDIO_ORIGIN",
"password": true
}
],
"servers": {
"3d-ar-studio": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"3d-ar-studio-mcp"
],
"env": {
"AR_STUDIO_PAGE_URL": "${input:ar-studio-page-url}",
"AR_STUDIO_ASSETS": "${input:ar-studio-assets}",
"AR_STUDIO_MCP_ENDPOINT": "${input:ar-studio-mcp-endpoint}",
"AR_STUDIO_ORIGIN": "${input:ar-studio-origin}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs