Skip to content
VS Code

cloud agent for VS Code

io.github.joepangallo/cloud-agent

AI software engineer — writes code, opens PRs, reviews code, generates tests, and more.

client:VS Code transport:stdio runtime:npm

Install cloud agent in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cloud-agent-api-key",
      "description": "CLOUD_AGENT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cloud-agent-url",
      "description": "CLOUD_AGENT_URL",
      "password": true
    }
  ],
  "servers": {
    "cloud-agent": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-server-cloud-agent"
      ],
      "env": {
        "CLOUD_AGENT_API_KEY": "${input:cloud-agent-api-key}",
        "CLOUD_AGENT_URL": "${input:cloud-agent-url}"
      }
    }
  }
}

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

cloud agent in other clients