breezedeploy for VS Code
io.github.przemekzur/breezedeploy
Deploy a local folder, git repo, or Docker image to a live HTTPS URL from your AI chat.
client:VS Code
transport:stdio
runtime:npm
Install breezedeploy in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "control-plane-api-key",
"description": "CONTROL_PLANE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "control-plane-url",
"description": "CONTROL_PLANE_URL",
"password": true
}
],
"servers": {
"breezedeploy": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"breezedeploy-mcp"
],
"env": {
"CONTROL_PLANE_API_KEY": "${input:control-plane-api-key}",
"CONTROL_PLANE_URL": "${input:control-plane-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs