Dazzle for VS Code
io.github.dazzle-labs/dazzle
Cloud stages for AI agents and live streaming. Create, manage, and broadcast content.
client:VS Code
transport:stdio
runtime:npm
Install Dazzle in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "dazzle-stage",
"description": "DAZZLE_STAGE",
"password": true
},
{
"type": "promptString",
"id": "dazzle-api-key",
"description": "DAZZLE_API_KEY",
"password": true
}
],
"servers": {
"dazzle": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@dazzle-labs/cli"
],
"env": {
"DAZZLE_STAGE": "${input:dazzle-stage}",
"DAZZLE_API_KEY": "${input:dazzle-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