Skip to content
VS Code

mcp meet for VS Code

io.github.pzep1/mcp-meet

One-click Google Meet scheduling and Apple Calendar mirroring with smart availability detection

client:VS Code transport:stdio runtime:npm

Install mcp meet in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "google-client-id",
      "description": "GOOGLE_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-client-secret",
      "description": "GOOGLE_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-redirect-uri",
      "description": "GOOGLE_REDIRECT_URI",
      "password": true
    },
    {
      "type": "promptString",
      "id": "calendar-ids",
      "description": "CALENDAR_IDS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "apple-calendar-name",
      "description": "APPLE_CALENDAR_NAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tz",
      "description": "TZ",
      "password": true
    }
  ],
  "servers": {
    "mcp-meet": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-meet"
      ],
      "env": {
        "GOOGLE_CLIENT_ID": "${input:google-client-id}",
        "GOOGLE_CLIENT_SECRET": "${input:google-client-secret}",
        "GOOGLE_REDIRECT_URI": "${input:google-redirect-uri}",
        "CALENDAR_IDS": "${input:calendar-ids}",
        "APPLE_CALENDAR_NAME": "${input:apple-calendar-name}",
        "TZ": "${input:tz}"
      }
    }
  }
}

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

mcp meet in other clients