Install
openclaw skills install google-contacts-address-bookGoogle Contacts API integration with managed OAuth. Search, inspect, create, and update contacts and contact groups stored in Google People. Use this skill when users want to read or modify Google Contacts, manage groups, or look up people data.
openclaw skills install google-contacts-address-bookAccess Google Contacts via the Google People API with managed OAuth authentication. Search, inspect, create, and update contacts and contact groups stored in Google Contacts.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Google Contacts API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Google Contacts |
|---|---|---|
![]() | ![]() | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Google Contacts |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Google People │
│ (User Chat) │ │ (OAuth) │ │ (Contacts API) │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect Contacts │ │
│ │ 4. Secure Token │
│ │ 5. Proxy Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Google │
│ File │ │ Auth │ │ People │
└──────────┘ └──────────┘ └──────────┘
Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Google Contacts again."
# List contacts
clawlink_call_tool --tool "googlecontacts_list_contacts" --params '{}'
# Search contacts by name
clawlink_call_tool --tool "googlecontacts_search_contacts" --params '{"query": "John Smith"}'
# Get a contact by ID
clawlink_call_tool --tool "googlecontacts_get_contact" --params '{"resource_name": "people/123456789"}'
All Google Contacts tool calls are authenticated automatically by ClawLink using the user's connected Google account.
No API key is required in chat. ClawLink stores the OAuth token securely and injects it into every Google People API request on the user's behalf.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrations
Response: Returns all connected integrations. Look for google-contacts in the list.
clawlink_list_tools --integration google-contacts
Response: Returns the live tool catalog for Google Contacts.
If Google Contacts tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration google-contacts| Tool | Description | Mode |
|---|---|---|
googlecontacts_list_contacts | List all contacts in the user's Google Contacts | Read |
googlecontacts_search_contacts | Search contacts by name, email, or other fields | Read |
googlecontacts_get_contact | Retrieve a specific contact by resource name | Read |
googlecontacts_create_contact | Create a new contact in Google Contacts | Write |
googlecontacts_update_contact | Update an existing contact's information | Write |
googlecontacts_delete_contact | Delete a contact from Google Contacts | Write |
| Tool | Description | Mode |
|---|---|---|
googlecontacts_list_contact_groups | List all contact groups | Read |
googlecontacts_get_contact_group | Retrieve a specific contact group | Read |
googlecontacts_create_contact_group | Create a new contact group | Write |
googlecontacts_update_contact_group | Update a contact group's name | Write |
googlecontacts_delete_contact_group | Delete a contact group | Write |
| Tool | Description | Mode |
|---|---|---|
googlecontacts_batch_create_contacts | Create multiple contacts in a single request | Write |
googlecontacts_batch_update_contacts | Update multiple contacts in a single request | Write |
googlecontacts_batch_delete_contacts | Delete multiple contacts in a single request | Write |
| Tool | Description | Mode |
|---|---|---|
googlecontacts_get_profile | Get the user's Google profile information | Read |
googlecontacts_list_people | Search the directory for people | Read |
| Tool | Description | Mode |
|---|---|---|
googlecontacts_get_contact_photo | Get a contact's profile photo | Read |
googlecontacts_update_contact_photo | Update a contact's profile photo | Write |
clawlink_call_tool --tool "googlecontacts_list_contacts" \
--params '{
"page_size": 100
}'
clawlink_call_tool --tool "googlecontacts_search_contacts" \
--params '{
"query": "John Smith"
}'
clawlink_call_tool --tool "googlecontacts_create_contact" \
--params '{
"names": [{"givenName": "Jane", "familyName": "Doe"}],
"emailAddresses": [{"value": "jane.doe@example.com", "type": "home"}],
"phoneNumbers": [{"value": "+1-555-0100", "type": "mobile"}]
}'
clawlink_call_tool --tool "googlecontacts_create_contact_group" \
--params '{
"name": "Work Colleagues"
}'
clawlink_call_tool --tool "googlecontacts_update_contact" \
--params '{
"resource_name": "people/123456789",
"names": [{"givenName": "Jane", "familyName": "Smith"}],
"emailAddresses": [{"value": "jane.smith@example.com", "type": "work"}]
}'
clawlink_list_integrations to confirm Google Contacts is connected.clawlink_list_tools --integration google-contacts to see the live catalog.clawlink_search_tools with a short query and integration google-contacts.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → search → get → call │
│ │
│ Example: Search contacts → Get details → Show results │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ list → get → describe → preview → confirm → call │
│ │
│ Example: Describe tool → Preview changes → User approves │
│ → Execute update │
└─────────────────────────────────────────────────────────────┘
clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.clawlink_preview_tool first.clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.| Status / Error | Meaning |
|---|---|
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration google-contacts. |
| Missing connection | Google Contacts is not connected. Direct the user to https://claw-link.dev/dashboard?add=google-contacts. |
RESOURCE_NOT_FOUND | Contact or contact group does not exist. Check the resource name. |
INVALID_ARGUMENT | Invalid parameter or missing required field. Review the tool schema with clawlink_describe_tool. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
openclaw plugins list
/new as a standalone message to reload the catalog.openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
/new again and retry.google-contacts.clawlink_describe_tool to verify parameter names and types before calling.clawlink_preview_tool first.Powered by ClawLink — an integration hub for OpenClaw
