Instavar Video Templates and Studio for VS Code
com.instavar/mcp-server
Free Remotion video templates and creative guides; optional hosted Studio rendering and publishing.
client:VS Code
transport:stdio
runtime:npm
Install Instavar Video Templates and Studio in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "instavar-api-key",
"description": "INSTAVAR_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "instavar-base-url",
"description": "INSTAVAR_BASE_URL",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@instavar/mcp-server"
],
"env": {
"INSTAVAR_API_KEY": "${input:instavar-api-key}",
"INSTAVAR_BASE_URL": "${input:instavar-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs