caldav mcp for VS Code
io.github.dominik1001/caldav-mcp
CalDAV calendar operations (list, create, update, delete events) as MCP tools.
client:VS Code
transport:stdio
runtime:npm
Install caldav mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "caldav-base-url",
"description": "CALDAV_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "caldav-username",
"description": "CALDAV_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "caldav-password",
"description": "CALDAV_PASSWORD",
"password": true
}
],
"servers": {
"caldav-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"caldav-mcp"
],
"env": {
"CALDAV_BASE_URL": "${input:caldav-base-url}",
"CALDAV_USERNAME": "${input:caldav-username}",
"CALDAV_PASSWORD": "${input:caldav-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs