Google Super

GOOGLESUPER_GET_CONTACTS

Fetches contacts (connections) for the authenticated Google account, allowing selection of specific data fields and pagination.

Remote googlesuper

Other tools also called GOOGLESUPER_GET_CONTACTS? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "page_token": {
      "type": "string",
      "title": "Page Token",
      "description": "Token to retrieve a specific page of results, obtained from 'nextPageToken' in a previous response."
    },
    "person_fields": {
      "type": "string",
      "title": "Person Fields",
      "default": "emailAddresses,names,birthdays,genders",
      "examples": [
        "addresses",
        "ageRanges",
        "biographies",
        "birthdays",
        "coverPhotos",
        "emailAddresses",
        "events",
        "genders",
        "imClients",
        "interests",
        "locales",
        "memberships",
        "metadata",
        "names",
        "nicknames",
        "occupations",
        "organizations",
        "phoneNumbers",
        "photos",
        "relations",
        "residences",
        "sipAddresses",
        "skills",
        "urls",
        "userDefined"
      ],
      "description": "Comma-separated person fields to retrieve for each contact (e.g., 'names,emailAddresses')."
    },
    "resource_name": {
      "type": "string",
      "title": "Resource Name",
      "default": "people/me",
      "description": "Identifier for the person resource whose connections are listed; use 'people/me' for the authenticated user."
    },
    "include_other_contacts": {
      "type": "boolean",
      "title": "Include Other Contacts",
      "default": true,
      "description": "Include 'Other Contacts' (interacted with but not explicitly saved) in addition to regular contacts; if true, fetches from both endpoints and merges results."
    }
  }
}