Skip to content
VS Code

capslane for VS Code

io.github.webbaluca/capslane

Retrieve existing or generated YouTube transcripts with timestamps through Capslane.

client:VS Code transport:stdio runtime:npm

Install capslane in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "capslane-api-key",
      "description": "CAPSLANE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "capslane": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@webba_tech/capslane-mcp"
      ],
      "env": {
        "CAPSLANE_API_KEY": "${input:capslane-api-key}"
      }
    }
  }
}

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

capslane in other clients