Skip to content
VS Code

cloud-tools for VS Code

io.github.munhq/cloud-tools

Multi-cloud cost, inventory and waste analysis over MCP: AWS, GCP, Cloudflare and OVH.

client:VS Code transport:stdio runtime:npm

Install cloud-tools in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cloud-tools-mode",
      "description": "CLOUD_TOOLS_MODE",
      "password": true
    }
  ],
  "servers": {
    "cloud-tools": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@munhq/cloud-tools"
      ],
      "env": {
        "CLOUD_TOOLS_MODE": "${input:cloud-tools-mode}"
      }
    }
  }
}

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

cloud-tools in other clients