Antideploy for VS Code
com.antideploy/antideploy-mcp
Deploy an app to Antideploy from a coding agent. No Dockerfile, no YAML, no cloud console.
client:VS Code
transport:stdio
runtime:npm
Install Antideploy in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "antideploy-api-key",
"description": "ANTIDEPLOY_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "antideploy-url",
"description": "ANTIDEPLOY_URL",
"password": true
}
],
"servers": {
"antideploy-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"antideploy-mcp"
],
"env": {
"ANTIDEPLOY_API_KEY": "${input:antideploy-api-key}",
"ANTIDEPLOY_URL": "${input:antideploy-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs