Apple Contacts for VS Code
io.github.jonathanrreed/apple-contacts-mcp
Inspect and search Apple Contacts on macOS, and resolve a contact into a message-ready recipient.
client:VS Code
transport:stdio
runtime:pypi
Install Apple Contacts in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "apple-contacts-mcp-safety-mode",
"description": "APPLE_CONTACTS_MCP_SAFETY_MODE",
"password": true
}
],
"servers": {
"apple-contacts-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"apple-contacts-mcp"
],
"env": {
"APPLE_CONTACTS_MCP_SAFETY_MODE": "${input:apple-contacts-mcp-safety-mode}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs