Skip to content
VS Code

Google Calendar for VS Code

io.github.domdomegg/google-cal-mcp

Allow AI systems to list, create, update, and manage Google Calendar events.

client:VS Code transport:stdio runtime:npm

Install Google Calendar in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "google-access-token",
      "description": "GOOGLE_ACCESS_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "google-cal-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "google-cal-mcp"
      ],
      "env": {
        "GOOGLE_ACCESS_TOKEN": "${input:google-access-token}"
      }
    }
  }
}

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

Google Calendar in other clients