Skip to content
VS Code

SlideMaster for VS Code

io.github.headdao/slidemaster-mcp

Create AI presentation videos with slides, narration, TTS audio, and MP4 export from any topic.

client:VS Code transport:stdio runtime:npm

Install SlideMaster in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "slidemaster-api-key",
      "description": "SLIDEMASTER_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "slidemaster-api-base",
      "description": "SLIDEMASTER_API_BASE",
      "password": true
    }
  ],
  "servers": {
    "slidemaster-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@slidemaster/mcp-server"
      ],
      "env": {
        "SLIDEMASTER_API_KEY": "${input:slidemaster-api-key}",
        "SLIDEMASTER_API_BASE": "${input:slidemaster-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

SlideMaster in other clients