Skip to content
VS Code

iCloud MCP for VS Code

io.github.mrgo2/icloud-mcp

Apple Mail, Calendar, Contacts, Reminders, Notes, Messages and Safari via AppleScript or iCloud

client:VS Code transport:stdio runtime:npm

Install iCloud MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "use-local-mode",
      "description": "USE_LOCAL_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "icloud-email",
      "description": "ICLOUD_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "icloud-app-password",
      "description": "ICLOUD_APP_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "icloud-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-icloud"
      ],
      "env": {
        "USE_LOCAL_MODE": "${input:use-local-mode}",
        "ICLOUD_EMAIL": "${input:icloud-email}",
        "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

iCloud MCP in other clients