google calendar for VS Code
com.pulsemcp/google-calendar
MCP server for Google Calendar integration with service account support and domain-wide delegation.
client:VS Code
transport:stdio
runtime:npm
Install google calendar in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gcal-service-account-client-email",
"description": "GCAL_SERVICE_ACCOUNT_CLIENT_EMAIL",
"password": true
},
{
"type": "promptString",
"id": "gcal-service-account-private-key",
"description": "GCAL_SERVICE_ACCOUNT_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "gcal-impersonate-email",
"description": "GCAL_IMPERSONATE_EMAIL",
"password": true
},
{
"type": "promptString",
"id": "enabled-toolgroups",
"description": "ENABLED_TOOLGROUPS",
"password": true
}
],
"servers": {
"google-calendar": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"google-calendar-workspace-mcp-server"
],
"env": {
"GCAL_SERVICE_ACCOUNT_CLIENT_EMAIL": "${input:gcal-service-account-client-email}",
"GCAL_SERVICE_ACCOUNT_PRIVATE_KEY": "${input:gcal-service-account-private-key}",
"GCAL_IMPERSONATE_EMAIL": "${input:gcal-impersonate-email}",
"ENABLED_TOOLGROUPS": "${input:enabled-toolgroups}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs