Skip to content
VS Code

Google Contacts MCP for VS Code

io.github.a1-x-tech/mcp-google-contacts

MCP server for the Google People API: search, create, update and delete contacts and groups.

client:VS Code transport:stdio runtime:npm

Install Google Contacts MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "google-contacts-client-id",
      "description": "GOOGLE_CONTACTS_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-contacts-client-secret",
      "description": "GOOGLE_CONTACTS_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-contacts-refresh-token",
      "description": "GOOGLE_CONTACTS_REFRESH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-contacts-access-token",
      "description": "GOOGLE_CONTACTS_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-contacts-oauth-port",
      "description": "GOOGLE_CONTACTS_OAUTH_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-contacts-api-base",
      "description": "GOOGLE_CONTACTS_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-contacts-timeout-ms",
      "description": "GOOGLE_CONTACTS_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-contacts-max-retries",
      "description": "GOOGLE_CONTACTS_MAX_RETRIES",
      "password": true
    }
  ],
  "servers": {
    "mcp-google-contacts": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-google-contacts"
      ],
      "env": {
        "GOOGLE_CONTACTS_CLIENT_ID": "${input:google-contacts-client-id}",
        "GOOGLE_CONTACTS_CLIENT_SECRET": "${input:google-contacts-client-secret}",
        "GOOGLE_CONTACTS_REFRESH_TOKEN": "${input:google-contacts-refresh-token}",
        "GOOGLE_CONTACTS_ACCESS_TOKEN": "${input:google-contacts-access-token}",
        "GOOGLE_CONTACTS_OAUTH_PORT": "${input:google-contacts-oauth-port}",
        "GOOGLE_CONTACTS_API_BASE": "${input:google-contacts-api-base}",
        "GOOGLE_CONTACTS_TIMEOUT_MS": "${input:google-contacts-timeout-ms}",
        "GOOGLE_CONTACTS_MAX_RETRIES": "${input:google-contacts-max-retries}"
      }
    }
  }
}

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

Google Contacts MCP in other clients