Beget Hosting for VS Code
io.github.badigit/beget-mcp
Beget hosting: sites, domains, DNS, MySQL, FTP, cron, backups, mail — 73 tools
client:VS Code
transport:stdio
runtime:pypi
Install Beget Hosting in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "beget-api-login",
"description": "BEGET_API_LOGIN",
"password": true
},
{
"type": "promptString",
"id": "beget-api-password",
"description": "BEGET_API_PASSWORD",
"password": true
}
],
"servers": {
"beget-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"beget-mcp"
],
"env": {
"BEGET_API_LOGIN": "${input:beget-api-login}",
"BEGET_API_PASSWORD": "${input:beget-api-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs