Skip to content
VS Code

Apple Contacts for VS Code

io.github.mgcrea/mcp-apple-contacts

Search and read Apple Contacts — resolves numbers and emails to names, writes off by default

client:VS Code transport:stdio runtime:npm

Install Apple Contacts in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "apple-contacts-allow-writes",
      "description": "APPLE_CONTACTS_ALLOW_WRITES",
      "password": true
    }
  ],
  "servers": {
    "mcp-apple-contacts": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@mgcrea/mcp-apple-contacts"
      ],
      "env": {
        "APPLE_CONTACTS_ALLOW_WRITES": "${input:apple-contacts-allow-writes}"
      }
    }
  }
}

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

Apple Contacts in other clients