Apple Calendar for VS Code
io.github.mgcrea/mcp-apple-calendar
Search, read and act on Apple Calendar — ranges, free-time lookup, writes off by default
client:VS Code
transport:stdio
runtime:npm
Install Apple Calendar in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "apple-calendar-allow-writes",
"description": "APPLE_CALENDAR_ALLOW_WRITES",
"password": true
},
{
"type": "promptString",
"id": "apple-calendar-calendars",
"description": "APPLE_CALENDAR_CALENDARS",
"password": true
}
],
"servers": {
"mcp-apple-calendar": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@mgcrea/mcp-apple-calendar"
],
"env": {
"APPLE_CALENDAR_ALLOW_WRITES": "${input:apple-calendar-allow-writes}",
"APPLE_CALENDAR_CALENDARS": "${input:apple-calendar-calendars}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs