Skip to content
VS Code

GCP Platform Engineer for VS Code

io.github.debilla/platform-mcp

Read-only GCP tools for debugging incidents and finding cost savings

client:VS Code transport:stdio runtime:pypi

Install GCP Platform Engineer in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "platform-mcp-environments",
      "description": "PLATFORM_MCP_ENVIRONMENTS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "platform-mcp-default-environment",
      "description": "PLATFORM_MCP_DEFAULT_ENVIRONMENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "platform-mcp-config",
      "description": "PLATFORM_MCP_CONFIG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "platform-mcp-audit-log",
      "description": "PLATFORM_MCP_AUDIT_LOG",
      "password": true
    }
  ],
  "servers": {
    "platform-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "platform-mcp"
      ],
      "env": {
        "PLATFORM_MCP_ENVIRONMENTS": "${input:platform-mcp-environments}",
        "PLATFORM_MCP_DEFAULT_ENVIRONMENT": "${input:platform-mcp-default-environment}",
        "PLATFORM_MCP_CONFIG": "${input:platform-mcp-config}",
        "PLATFORM_MCP_AUDIT_LOG": "${input:platform-mcp-audit-log}"
      }
    }
  }
}

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

GCP Platform Engineer in other clients