Skip to content
VS Code

google workspace mcp for VS Code

io.github.aringad/google-workspace-mcp

Google Workspace Admin via MCP. Manage users, groups, aliases, org units.

client:VS Code transport:stdio runtime:pypi

Install google workspace mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "google-service-account-file",
      "description": "GOOGLE_SERVICE_ACCOUNT_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-admin-email",
      "description": "GOOGLE_ADMIN_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-customer-id",
      "description": "GOOGLE_CUSTOMER_ID",
      "password": true
    }
  ],
  "servers": {
    "google-workspace-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "google-workspace-admin-mcp"
      ],
      "env": {
        "GOOGLE_SERVICE_ACCOUNT_FILE": "${input:google-service-account-file}",
        "GOOGLE_ADMIN_EMAIL": "${input:google-admin-email}",
        "GOOGLE_CUSTOMER_ID": "${input:google-customer-id}"
      }
    }
  }
}

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

google workspace mcp in other clients