Connect the Google Contacts MCP server to your AI agent Open source, MIT, on npm. Setup instructions for Claude, Cursor and Codex are in the repository; adoption questions — Telegram. GitHub repository Telegram

Google Contacts: Get a contact group — MCP tool

Google Contacts MCP tool: Fetches one contact group, optionally with its member resource names.

Technical name: get_contact_group

What task it solves

I want to see who is in a contact group.

Fetches one group by resource name; with max_members > 0 it also returns that many member resource names.

When to use it

Use it to read a group's details, obtain its etag before renaming, or list its members (then hydrate them with batch_get_contacts).

What to provide

  • resource_namerequired. contactGroups/....
  • max_membersoptional. How many memberResourceNames to include (0/omitted = none).
  • group_fieldsoptional. e.g. add memberCount.

What it returns

The group with resourceName, etag, name, groupType, and memberResourceNames when requested (memberCount tells the total).

What changes in Google Contacts

The tool reads Google Contacts data and does not change it.

Example request

Who is in my "Friends" group? Show their names and emails.

Errors and limitations

memberResourceNames are just ids — fetch the people with batch_get_contacts. A 404 means the group doesn't exist (check list_contact_groups). Access also depends on token permissions, quotas, and upstream API limits.

Related MCP tools

Technical details