# Google Contacts MCP
**English** | [Русский](./README.ru.md)
[](https://www.npmjs.com/package/mcp-google-contacts)
[](https://glama.ai/mcp/servers/A1-x-Tech/mcp-google-contacts)
[](https://github.com/A1-x-Tech/mcp-google-contacts/actions/workflows/ci.yml)
[](./LICENSE)
**A1 Google Contacts MCP** lets an AI app manage your Google address book in plain language. Find a contact, create or update one, organize contacts with labels, run batch imports and clean-ups, and turn auto-saved "Other contacts" into real ones.
It uses the Google People API — the API behind Google Contacts — with your Google account. It guards every update against concurrent edits, keeps reads compact with explicit field masks and makes the limits of the People API explicit instead of implying that every contacts task is possible.
- **19 tools.** List, search and read contacts, create, update and delete them one at a time or in batches, manage contact groups and membership, and reach "Other contacts".
- **Updates don't clobber.** Every update is etag-guarded: if a contact changed elsewhere since it was read, the write fails instead of silently overwriting the concurrent edit.
- **Deletes are real.** The People API has no trash; deleting a contact or group is permanent, and the server marks those tools destructive so your AI app can ask first.
- **Minimal Google scopes.** It uses `contacts` for read/write — `contacts.readonly` is enough for a read-only setup — plus `contacts.other.readonly` only for "Other contacts", without broad account access.
Start with a read-only question:
> Find everyone from Acme in my contacts and show their emails and phone numbers.
[Connect the server](#quick-start) · [Explore use cases](#what-you-can-ask-it-to-do) · [Open technical documentation](#technical-documentation)
---
## See it work in a minute
> **You:** Show my contact card for Jane Doe — email, phone and company.
>
> **Assistant:** Finds the contact and shows the requested fields. Nothing changes.
>
> **You:** Change her phone number to +1 415 555 0100 and add her to the "Clients" label.
>
> **Assistant:** Shows the contact and the proposed change, then asks for confirmation before writing.
>
> **You:** Confirm.
>
> **Assistant:** Applies the etag-guarded update and the label. If the contact changed elsewhere in the meantime, the write fails instead of overwriting it.
## Contents
- [Quick start](#quick-start)
- [What you can ask it to do](#what-you-can-ask-it-to-do)
- [How a contact changes](#how-a-contact-changes)
- [What can change](#what-can-change)
- [Getting access](#getting-access)
- [Configuration](#configuration)
- [Data, limits and background work](#data-limits-and-background-work)
- [Technical documentation](#technical-documentation)
- [Support](#support)
## Quick start
You need Node.js 20+, a Google account and OAuth credentials from a Google Cloud project with the People API enabled.
1. [Prepare Google OAuth access](#getting-access).
2. Add the server to your AI app.
3. Ask the read-only question above.
Codex
**In the app:** open **Settings → MCP servers**, select **Add server**, choose **STDIO**, enter the command `npx -y mcp-google-contacts@latest` and environment variables `GOOGLE_CONTACTS_CLIENT_ID`, `GOOGLE_CONTACTS_CLIENT_SECRET`, `GOOGLE_CONTACTS_REFRESH_TOKEN`, then select **Save** and **Restart**.
**From the command line:**
```bash
codex mcp add google-contacts \
--env GOOGLE_CONTACTS_CLIENT_ID=your_client_id \
--env GOOGLE_CONTACTS_CLIENT_SECRET=your_client_secret \
--env GOOGLE_CONTACTS_REFRESH_TOKEN=your_refresh_token \
-- npx -y mcp-google-contacts@latest
```
```bash
codex mcp list
```
[Codex MCP documentation](https://learn.chatgpt.com/docs/extend/mcp?surface=cli)
Claude Code
```bash
claude mcp add \
--env GOOGLE_CONTACTS_CLIENT_ID=your_client_id \
--env GOOGLE_CONTACTS_CLIENT_SECRET=your_client_secret \
--env GOOGLE_CONTACTS_REFRESH_TOKEN=your_refresh_token \
--transport stdio --scope user google-contacts \
-- npx -y mcp-google-contacts@latest
```
```bash
claude mcp list
```
[Claude Code MCP documentation](https://code.claude.com/docs/en/mcp)
Claude Desktop
The current official path is **Settings → Extensions**. For a custom desktop extension, open **Advanced settings → Extension Developer → Install Extension…**, select a `.mcpb` file and follow the prompts.
This repository currently publishes an npm stdio package and does not contain a `.mcpb` bundle. For Claude Desktop builds that still support local configuration, use the following JSON stdio configuration as a fallback:
```json
{
"mcpServers": {
"google-contacts": {
"command": "npx",
"args": ["-y", "mcp-google-contacts@latest"],
"env": {
"GOOGLE_CONTACTS_CLIENT_ID": "your_client_id",
"GOOGLE_CONTACTS_CLIENT_SECRET": "your_client_secret",
"GOOGLE_CONTACTS_REFRESH_TOKEN": "your_refresh_token"
}
}
}
}
```
In those builds, save it to `~/Library/Application Support/Claude/claude_desktop_config.json` on macOS or `%APPDATA%\Claude\claude_desktop_config.json` on Windows.
[Claude Desktop MCP documentation](https://support.claude.com/en/articles/10949351-getting-started-with-local-mcp-servers-on-claude-desktop)
Cursor
Add this to `~/.cursor/mcp.json` on macOS/Linux or `%USERPROFILE%\.cursor\mcp.json` on Windows:
```json
{
"mcpServers": {
"google-contacts": {
"type": "stdio",
"command": "npx",
"args": ["-y", "mcp-google-contacts@latest"],
"env": {
"GOOGLE_CONTACTS_CLIENT_ID": "your_client_id",
"GOOGLE_CONTACTS_CLIENT_SECRET": "your_client_secret",
"GOOGLE_CONTACTS_REFRESH_TOKEN": "your_refresh_token"
}
}
}
}
```
[Cursor MCP documentation](https://cursor.com/docs/mcp)
VS Code
Run **MCP: Open User Configuration** and add:
```json
{
"servers": {
"google-contacts": {
"type": "stdio",
"command": "npx",
"args": ["-y", "mcp-google-contacts@latest"],
"env": {
"GOOGLE_CONTACTS_CLIENT_ID": "${input:contacts_client_id}",
"GOOGLE_CONTACTS_CLIENT_SECRET": "${input:contacts_client_secret}",
"GOOGLE_CONTACTS_REFRESH_TOKEN": "${input:contacts_refresh_token}"
}
}
},
"inputs": [
{ "type": "promptString", "id": "contacts_client_id", "description": "Google OAuth client ID" },
{ "type": "promptString", "id": "contacts_client_secret", "description": "Google OAuth client secret", "password": true },
{ "type": "promptString", "id": "contacts_refresh_token", "description": "Google OAuth refresh token", "password": true }
]
}
```
Check it with **MCP: List Servers**.
[VS Code MCP documentation](https://code.visualstudio.com/docs/agent-customization/mcp-servers)
You made it to the end!