Skip to content
VS Code

Scribefy for VS Code

io.github.mkirovbg/scribefy-mcp

Search YouTube, get video metadata, and extract timestamped transcripts for AI workflows.

client:VS Code transport:stdio runtime:npm

Install Scribefy in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "scribefy-api-key",
      "description": "SCRIBEFY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "scribefy-api-base",
      "description": "SCRIBEFY_API_BASE",
      "password": true
    }
  ],
  "servers": {
    "scribefy-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "scribefy-mcp"
      ],
      "env": {
        "SCRIBEFY_API_KEY": "${input:scribefy-api-key}",
        "SCRIBEFY_API_BASE": "${input:scribefy-api-base}"
      }
    }
  }
}

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

Scribefy in other clients