Skip to content
VS Code

CloudeIDE for VS Code

com.cloudeide/cloudeide

Deploy from your terminal, and give an AI coding agent the same abilities over MCP.

client:VS Code transport:stdio runtime:npm

Install CloudeIDE in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cloudeide-token",
      "description": "CLOUDEIDE_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cloudeide-api-url",
      "description": "CLOUDEIDE_API_URL",
      "password": true
    }
  ],
  "servers": {
    "cloudeide": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "cloudeide"
      ],
      "env": {
        "CLOUDEIDE_TOKEN": "${input:cloudeide-token}",
        "CLOUDEIDE_API_URL": "${input:cloudeide-api-url}"
      }
    }
  }
}

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

CloudeIDE in other clients