Variel MCP Server for VS Code
ai.variel/mcp-server
Generate your brand in-agent, then keep tokens, components, and copy on-brand over MCP.
client:VS Code
transport:stdio
runtime:npm
Install Variel MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "brand-api-key",
"description": "BRAND_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "variel-api-url",
"description": "VARIEL_API_URL",
"password": true
},
{
"type": "promptString",
"id": "anthropic-api-key",
"description": "ANTHROPIC_API_KEY",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@variel/mcp-server"
],
"env": {
"BRAND_API_KEY": "${input:brand-api-key}",
"VARIEL_API_URL": "${input:variel-api-url}",
"ANTHROPIC_API_KEY": "${input:anthropic-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