Google Contacts
Arcade Optimized
Arcade.dev LLM tools for Google Contacts
6tools
Google Contacts Toolkit
The Google Contacts toolkit lets Arcade-powered LLMs create, search, and inspect contacts and directory people in a user's Google account via the Google People API.
Capabilities
- Contact creation — create new personal contact records with any combination of name, email, and phone number.
- Contact search — look up existing personal contacts by name, email address, or phone number.
- Workspace directory search — resolve colleagues' details (name, email) from the Google Workspace organization directory, with built-in pagination support for large result sets.
- Authenticated user profile — retrieve the current user's profile, permissions, and Google Contacts environment context.
OAuth
This toolkit authenticates via OAuth 2.0 using Google as the provider. See the Arcade Google auth provider docs for configuration details, required scopes, and setup instructions.
Available tools(6)
6 of 6 tools
Operations
Behavior
| Tool name | Description | Secrets | |
|---|---|---|---|
Create a new contact record in Google Contacts.
Examples:
```
create_contact(given_name="Alice")
create_contact(given_name="Alice", family_name="Smith")
create_contact(given_name="Alice", email="alice | |||
Search the user's contacts in Google Contacts by email address. | |||
Search the user's contacts in Google Contacts by name. | |||
Search the user's contacts in Google Contacts by phone number. | |||
Search the user's Google Workspace organization directory by name or email.
Use this to resolve a colleague's email address when they are not in the
user's personal Contacts (e.g. someone elsewhere in the same company).
Returns one page of people. When has_next_page is true, call again with the same
query and limit plus the returned next_page_token to fetch the next page — Google
rejects a continuation whose query or limit differs from the original call. | |||
Get comprehensive user profile and Google Contacts environment information.
This tool provides detailed information about the authenticated user including
their name, email, profile picture, Google Contacts access permissions, and other
important profile details from Google services. |
Get Building
Last updated on