Skip to content
VS Code

Cloudeval AI for VS Code

io.github.ganakailabs/cloudeval

Cloud evaluations and reviews for Azure and static AWS CloudFormation (beta). Requires an account.

client:VS Code transport:stdio runtime:npm

Install Cloudeval AI in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cloudeval-access-key",
      "description": "CLOUDEVAL_ACCESS_KEY",
      "password": true
    }
  ],
  "servers": {
    "cloudeval": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@ganakailabs/cloudeval-cli"
      ],
      "env": {
        "CLOUDEVAL_ACCESS_KEY": "${input:cloudeval-access-key}"
      }
    }
  }
}

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

Cloudeval AI in other clients