Skip to content
VS Code

Apple Calendar for VS Code

io.github.jonathanrreed/apple-calendar-mcp

List, create, update, and delete events in Apple Calendar on macOS.

client:VS Code transport:stdio runtime:pypi

Install Apple Calendar in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "apple-calendar-mcp-safety-mode",
      "description": "APPLE_CALENDAR_MCP_SAFETY_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "apple-calendar-mcp-allowed-calendars",
      "description": "APPLE_CALENDAR_MCP_ALLOWED_CALENDARS",
      "password": true
    }
  ],
  "servers": {
    "apple-calendar-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "apple-calendar-mcp"
      ],
      "env": {
        "APPLE_CALENDAR_MCP_SAFETY_MODE": "${input:apple-calendar-mcp-safety-mode}",
        "APPLE_CALENDAR_MCP_ALLOWED_CALENDARS": "${input:apple-calendar-mcp-allowed-calendars}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Apple Calendar in other clients