Google Contacts for VS Code
io.github.domdomegg/google-contacts-mcp
Allow AI systems to list, search, and manage contacts via Google Contacts.
client:VS Code
transport:stdio
runtime:npm
Install Google Contacts in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "google-access-token",
"description": "GOOGLE_ACCESS_TOKEN",
"password": true
}
],
"servers": {
"google-contacts-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"google-contacts-mcp"
],
"env": {
"GOOGLE_ACCESS_TOKEN": "${input:google-access-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs