icloud calendar for VS Code
io.github.iceywu/icloud-calendar
Manage Apple iCloud Calendar through a reliable CalDAV MCP server.
client:VS Code
transport:stdio
runtime:npm
Install icloud calendar in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "icloud-username",
"description": "ICLOUD_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "icloud-app-password",
"description": "ICLOUD_APP_PASSWORD",
"password": true
}
],
"servers": {
"icloud-calendar": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"icloud-calendar-mcp"
],
"env": {
"ICLOUD_USERNAME": "${input:icloud-username}",
"ICLOUD_APP_PASSWORD": "${input:icloud-app-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs