Skip to content
VS Code

OBSBOT Tiny 2 Camera Control for VS Code

io.github.lxman/obsbot-mcp

Control an OBSBOT Tiny 2 camera: pan/tilt/zoom, AI tracking, focus, exposure, snapshots, recording

client:VS Code transport:stdio runtime:npm

Install OBSBOT Tiny 2 Camera Control in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "obsbot-log-file",
      "description": "OBSBOT_LOG_FILE",
      "password": true
    }
  ],
  "servers": {
    "obsbot-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "obsbot-mcp"
      ],
      "env": {
        "OBSBOT_LOG_FILE": "${input:obsbot-log-file}"
      }
    }
  }
}

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

OBSBOT Tiny 2 Camera Control in other clients