Skip to content
VS Code

Bult for VS Code

io.github.bultcloud/mcp-server

Deploy and manage Bult apps from AI coding agents.

client:VS Code transport:stdio runtime:npm

Install Bult in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "bult-api-url",
      "description": "BULT_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bult-api-token",
      "description": "BULT_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@bultcloud/mcp-server"
      ],
      "env": {
        "BULT_API_URL": "${input:bult-api-url}",
        "BULT_API_TOKEN": "${input:bult-api-token}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Bult in other clients