Skip to content
VS Code

cloudpulse for VS Code

io.github.lhf552004/cloudpulse

Cross-cloud observability for AI agents. Covers AWS, GCP, Vercel, and Cloudflare.

client:VS Code transport:stdio runtime:npm

Install cloudpulse in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "aws-access-key-id",
      "description": "AWS_ACCESS_KEY_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aws-secret-access-key",
      "description": "AWS_SECRET_ACCESS_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aws-region",
      "description": "AWS_REGION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vercel-token",
      "description": "VERCEL_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-application-credentials",
      "description": "GOOGLE_APPLICATION_CREDENTIALS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-cloud-project",
      "description": "GOOGLE_CLOUD_PROJECT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cloudflare-api-token",
      "description": "CLOUDFLARE_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cloudflare-account-id",
      "description": "CLOUDFLARE_ACCOUNT_ID",
      "password": true
    }
  ],
  "servers": {
    "cloudpulse": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "cloudpulse-mcp"
      ],
      "env": {
        "AWS_ACCESS_KEY_ID": "${input:aws-access-key-id}",
        "AWS_SECRET_ACCESS_KEY": "${input:aws-secret-access-key}",
        "AWS_REGION": "${input:aws-region}",
        "VERCEL_TOKEN": "${input:vercel-token}",
        "GOOGLE_APPLICATION_CREDENTIALS": "${input:google-application-credentials}",
        "GOOGLE_CLOUD_PROJECT": "${input:google-cloud-project}",
        "CLOUDFLARE_API_TOKEN": "${input:cloudflare-api-token}",
        "CLOUDFLARE_ACCOUNT_ID": "${input:cloudflare-account-id}"
      }
    }
  }
}

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

cloudpulse in other clients