Skip to content
VS Code

Tripwire for VS Code

io.github.aliboily/tripwire

MCP for Roblox Studio and Open Cloud: drive Studio, run headless tests, and review game security.

client:VS Code transport:stdio runtime:npm

Install Tripwire in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "roblox-open-cloud-key",
      "description": "ROBLOX_OPEN_CLOUD_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "roblox-universe-id",
      "description": "ROBLOX_UNIVERSE_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "roblox-place-id",
      "description": "ROBLOX_PLACE_ID",
      "password": true
    }
  ],
  "servers": {
    "tripwire": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "tripwire-roblox"
      ],
      "env": {
        "ROBLOX_OPEN_CLOUD_KEY": "${input:roblox-open-cloud-key}",
        "ROBLOX_UNIVERSE_ID": "${input:roblox-universe-id}",
        "ROBLOX_PLACE_ID": "${input:roblox-place-id}"
      }
    }
  }
}

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

Tripwire in other clients