Google Contacts
Independent, unofficial connector for Google Contacts. Not affiliated with, endorsed by, or sponsored by Google Contacts. "Google Contacts" is a trademark of its owner, used only to identify the service this connector works with.
Agent-callable tools for Google Contacts, wrapping the
Google People API. Create, read, update, and delete a person's contacts; search contacts by name, email, or phone; set or remove contact photos; create and manage contact groups (labels) and their membership; and browse the auto-saved "other contacts" surface. Every tool uses a single OAuth connection; capability is gated by the granted scope.
When to use this
- Saving, finding, updating, or deleting a person's Google Contacts ("add Jane to my contacts", "what's Bob's email", "remove this contact").
- Organizing contacts into groups/labels and adding or removing members.
- Setting or removing a contact's photo.
- Finding someone the user has interacted with (e.g. emailed) but never explicitly saved — the "other contacts" surface — and promoting them into saved contacts.
Setup
This is an
agentskills.io skill.
If the connector has not been installed as a skill yet, install it first with
npx skills add zapier/connectors --skill google-contacts
(or your harness's own skill-install mechanism), then continue here.
The connector runs on Node.js 22.18+. Pick the reference that matches how you're running it, and load it before doing anything else:
| You have... | Load |
|---|
An MCP-aware client — tools may already be loaded (e.g. mcp__google-contacts__<tool>
), or you can register a local server yourself (or guide the user to) | |
| Terminal / subprocess access (you can run ) | |
| Only your own code, importing this package as a dependency | |
Scripts
All scripts use the single
connection.
| Script | Script name | Connections | Description |
|---|
| | | Create a contact from structured name, email, phone, address, and organization fields. |
| | | Retrieve a single contact by resource name, with full field detail. |
| | | Update a contact; each array sent replaces that whole field, omitted fields are untouched. |
| | | Delete a contact from the account. |
| | | List the account's contacts, paginated — the primary resourceName resolver. |
scripts/searchContacts.ts
| | | Search contacts by name, nickname, email, phone, or organization (prefix match). |
scripts/updateContactPhoto.ts
| | | Set or replace a contact's photo from a base64-encoded image. |
scripts/deleteContactPhoto.ts
| | | Remove a contact's photo, reverting to the default avatar. |
scripts/listContactGroups.ts
| | | List contact groups (labels), user and system — the contactGroupResourceName resolver. |
scripts/getContactGroup.ts
| | | Get a single contact group, optionally with its member contact resource names. |
scripts/createContactGroup.ts
| | | Create a new user contact group (label). |
scripts/updateContactGroup.ts
| | | Rename a user contact group (system groups cannot be renamed). |
scripts/deleteContactGroup.ts
| | | Delete a user contact group (label), optionally with its member contacts. |
scripts/modifyContactGroupMembers.ts
| modifyContactGroupMembers
| | Add and/or remove contacts in a group without disturbing other memberships. |
scripts/listOtherContacts.ts
| | | List auto-saved "other contacts" (people interacted with but never saved). |
scripts/searchOtherContacts.ts
| | | Search "other contacts" by name, email, or phone (prefix match). |
scripts/copyOtherContact.ts
| | | Promote an "other contact" into saved contacts, returning an editable contact. |
Auth
Every shape passes auth as one connection
selector, not the secret — a
string. Every connector accepts
(Zapier-managed auth — routes through Zapier's auth, retries, and governance layer); some also accept one or more direct-token resolvers (naming and count vary per connector) — check this connector's own resolvers rather than assuming. The
prefix is optional; a bare value goes to the first resolver that claims it. Each script declares the connections it needs and the resolvers each accepts. The exact syntax for passing a connection (and how to see this connector's resolver list) differs by shape — see the reference you loaded above.
Google Contacts uses OAuth 2.0. The connector needs Google "contacts" access (read/write); the other-contacts tools additionally need "other contacts" read access. On a
, reconnect with contacts access granted.
- (recommended) — route through a Zapier-managed Google Contacts connection (
GOOGLE_CONTACTS_ZAPIER_CONNECTION_ID
); Zapier holds the OAuth credential and refreshes it automatically. Find the id with npx zapier-sdk list-connections GoogleContactsCLIAPI
.
env:GOOGLE_CONTACTS_ACCESS_TOKEN
(direct) — a Google OAuth access token sent as a bearer. Good for short-lived/testing use: Google access tokens expire ~1 hour after issue and this path does not refresh them, so the Zapier-managed connection is the durable choice.
Output format
Every script returns a
envelope:
- — the script's result (the shape its declares; see the reference you loaded above for how to inspect a script's exact schema in your shape).
meta.outputDataValidation
— what validating did:
{ skipped: false, droppedPaths: null }
— validated, nothing removed.
{ skipped: false, droppedPaths: [...], instruction }
— validated, but those paths were stripped from : fields the script returned from the API that the doesn't declare. If you need them, re-run with output validation skipped.
- — validation was bypassed; is the raw, unchecked script output.
Reading dropped fields / . To receive the raw, unvalidated result, opt out of output validation (the exact syntax differs by shape — see the reference you loaded above). Input validation is never skipped.
Trimming the result / . To shrink a large result down to the fields you need, pass a jq expression that post-processes
(again, exact syntax per shape). The jq runs against
only, NOT the
envelope, so write it rooted at
(run the script's
— or your shape's equivalent — to see its output schema). The transformed value replaces
,
is preserved, and the result is NOT re-validated against the output schema.
Disambiguation & refusals
- Resolve names before writing. Before / /
modifyContactGroupMembers
on a contact identified by name, call (or ) and count exact, case-insensitive name matches. One match → act on it; don't over-ask. Two or more that tie → stop, list the candidates with a distinguishing field (email or phone), and ask which one — never silently pick. The same rule applies to groups via .
- Editing a list field replaces it. replaces each array you send (e.g. ) wholesale. To add a value without dropping the others, first, append, then send the full array. For group membership, prefer
modifyContactGroupMembers
(element-level) over .
- Out of scope — decline, don't substitute. This connector does not do bulk/batch contact create-update-delete, Google Workspace directory lookups, or contact merge/dedupe. If asked for one of these, say it isn't supported and stop — do not call another tool and report it as done.
- No bulk operations — never loop to fake one. There is no batch endpoint. If asked to change, add, or delete a field across many or all contacts at once (e.g. "set everyone's company to Acme"), decline and explain it isn't supported — do not loop / /
modifyContactGroupMembers
over multiple contacts to simulate a bulk operation. Acting on a single, explicitly-identified contact is fine; fanning out across the address book is not.
References
Load the matching reference file before working in that area:
| Reference | Covers | Load it when |
|---|
references/google-contacts-api-gotchas.md
| Error codes, update replacement semantics, etag concurrency, search prefix matching + warmup, write propagation delay, resource name formats, contact group types, membership limits, other-contacts field restrictions, and pagination. | Before any tool call. |