Skip to content
VS Code

Nova3D for VS Code

io.github.raresense/nova3d

Structured, part-aware 3D generation for AI agents. Named-part GLB, preview URL, Blender script.

client:VS Code transport:stdio runtime:pypi

Install Nova3D in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "nova3d-token",
      "description": "NOVA3D_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "nova3d-app-url",
      "description": "NOVA3D_APP_URL",
      "password": true
    }
  ],
  "servers": {
    "nova3d": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "nova3d-mcp"
      ],
      "env": {
        "NOVA3D_TOKEN": "${input:nova3d-token}",
        "NOVA3D_APP_URL": "${input:nova3d-app-url}"
      }
    }
  }
}

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

Nova3D in other clients