Skip to content
VS Code

broll for VS Code

io.github.luke-fairbanks/broll

Content studio MCP for coding agents: BYO keys, deterministic video rendering, draft-first posting

client:VS Code transport:stdio runtime:npm

Install broll in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "openai-api-key",
      "description": "OPENAI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gemini-api-key",
      "description": "GEMINI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bluesky-identifier",
      "description": "BLUESKY_IDENTIFIER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bluesky-app-password",
      "description": "BLUESKY_APP_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mastodon-access-token",
      "description": "MASTODON_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "x-api-key",
      "description": "X_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "x-api-secret",
      "description": "X_API_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "x-access-token",
      "description": "X_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "x-access-token-secret",
      "description": "X_ACCESS_TOKEN_SECRET",
      "password": true
    }
  ],
  "servers": {
    "broll": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "broll-mcp"
      ],
      "env": {
        "OPENAI_API_KEY": "${input:openai-api-key}",
        "GEMINI_API_KEY": "${input:gemini-api-key}",
        "BLUESKY_IDENTIFIER": "${input:bluesky-identifier}",
        "BLUESKY_APP_PASSWORD": "${input:bluesky-app-password}",
        "MASTODON_ACCESS_TOKEN": "${input:mastodon-access-token}",
        "X_API_KEY": "${input:x-api-key}",
        "X_API_SECRET": "${input:x-api-secret}",
        "X_ACCESS_TOKEN": "${input:x-access-token}",
        "X_ACCESS_TOKEN_SECRET": "${input:x-access-token-secret}"
      }
    }
  }
}

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

broll in other clients