Skip to content
VS Code

three.ws Loom for VS Code

io.github.nirholas/loom-mcp

Browse the community 3D-creation gallery, fetch a creation with its viewer URL, and submit it.

client:VS Code transport:stdio runtime:npm

Install three.ws Loom in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "three-ws-base",
      "description": "THREE_WS_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "three-ws-timeout-ms",
      "description": "THREE_WS_TIMEOUT_MS",
      "password": true
    }
  ],
  "servers": {
    "loom-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@three-ws/loom-mcp"
      ],
      "env": {
        "THREE_WS_BASE": "${input:three-ws-base}",
        "THREE_WS_TIMEOUT_MS": "${input:three-ws-timeout-ms}"
      }
    }
  }
}

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

three.ws Loom in other clients