Skip to content
VS Code

SpatialPack — 3D asset readiness for VS Code

dev.spatialpack/mcp

Test whether 3D assets survive Apple Quick Look and Safari <model>, then fix what fails

client:VS Code transport:stdio runtime:npm

Install SpatialPack — 3D asset readiness in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "spatialpack-mcp-sandbox",
      "description": "SPATIALPACK_MCP_SANDBOX",
      "password": true
    },
    {
      "type": "promptString",
      "id": "spatialpack-mcp-log",
      "description": "SPATIALPACK_MCP_LOG",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@spatialpack/mcp"
      ],
      "env": {
        "SPATIALPACK_MCP_SANDBOX": "${input:spatialpack-mcp-sandbox}",
        "SPATIALPACK_MCP_LOG": "${input:spatialpack-mcp-log}"
      }
    }
  }
}

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

SpatialPack — 3D asset readiness in other clients