Skip to content
VS Code

youtube creator for VS Code

io.github.wmarceau/youtube-creator

YouTube automation: upload videos, Shorts, manage playlists, get analytics

client:VS Code transport:stdio runtime:pypi

Install youtube creator in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "youtube-credentials-path",
      "description": "YOUTUBE_CREDENTIALS_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "youtube-token-path",
      "description": "YOUTUBE_TOKEN_PATH",
      "password": true
    }
  ],
  "servers": {
    "youtube-creator": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "youtube-creator-mcp"
      ],
      "env": {
        "YOUTUBE_CREDENTIALS_PATH": "${input:youtube-credentials-path}",
        "YOUTUBE_TOKEN_PATH": "${input:youtube-token-path}"
      }
    }
  }
}

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

youtube creator in other clients