calendar mcp for VS Code
io.github.deciduus/calendar-mcp
Google Calendar for LLM agents: find, create, update, move, delete events; free/busy; scheduling.
client:VS Code
transport:stdio
runtime:pypi
Install calendar mcp 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": "token-file-path",
"description": "TOKEN_FILE_PATH",
"password": true
}
],
"servers": {
"calendar-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"calendar-mcp-server"
],
"env": {
"GOOGLE_CLIENT_ID": "${input:google-client-id}",
"GOOGLE_CLIENT_SECRET": "${input:google-client-secret}",
"TOKEN_FILE_PATH": "${input:token-file-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs