Access Google Meet via the Google Meet REST API with managed OAuth authentication. Create meeting spaces, inspect conference records, retrieve recordings and transcripts, and manage participants.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Google Meet API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Google Meet |
|---|---|---|
| :---: | :---: | :---: |
| !Install | !Pair | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Google Meet |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Google Meet │
│ (User Chat) │ │ (OAuth) │ │ (Meet API) │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect Meet │ │
│ │ 4. Secure Token │
│ │ 5. Proxy Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Google │
│ File │ │ Auth │ │ Meet │
└──────────┘ └──────────┘ └──────────┘
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 Meet again."
# Create a new meeting space
clawlink_call_tool --tool "googlemeet_create_meet" --params '{}'
# List conference records
clawlink_call_tool --tool "googlemeet_list_conference_records" --params '{}'
# Get a meeting space details
clawlink_call_tool --tool "googlemeet_get_meet" --params '{"name": "spaces/YOUR_SPACE_ID"}'
All Google Meet 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 Meet 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-meet in the list.
clawlink_list_tools --integration google-meet
Response: Returns the live tool catalog for Google Meet.
If Google Meet tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration google-meet| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
googlemeet_create_meet | Create a new Meet space with optional configuration | Write |
googlemeet_get_meet | Retrieve details of a Meet space by its identifier | Read |
googlemeet_update_space | Update an existing Meet space's settings | Write |
googlemeet_end_active_conference | End an ongoing conference in a specified space | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
googlemeet_list_conference_records | List past conference records, optionally filtered | Read |
googlemeet_get_conference_record_by_name | Get details for a specific conference record | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
googlemeet_list_participants | List all participants in a conference record | Read |
googlemeet_list_participant_sessions | List all join/leave sessions for a participant | Read |
googlemeet_get_participant_session | Get details of a specific participant session | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
googlemeet_list_recordings | List recording resources for a conference record | Read |
googlemeet_get_recordings_by_conference_record_id | Get all recordings for a specific conference | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
googlemeet_get_transcripts_by_conference_record_id | List all transcripts for a conference | Read |
googlemeet_get_transcript | Get a specific transcript by resource name | Read |
googlemeet_list_transcript_entries | List structured transcript entries (speaker, time, text) | Read |
googlemeet_get_transcript_entry | Get a specific transcript entry by resource name | Read |
clawlink_call_tool --tool "googlemeet_create_meet" \
--params '{
"config": {
"accessType": "OPEN",
"entryPointAccess": "anyone"
}
}'
clawlink_call_tool --tool "googlemeet_list_conference_records" \
--params '{
"page_size": 20
}'
clawlink_call_tool --tool "googlemeet_get_meet" \
--params '{
"name": "spaces/YOUR_SPACE_ID"
}'
clawlink_call_tool --tool "googlemeet_list_participants" \
--params '{
"parent": "conferenceRecords/YOUR_CONFERENCE_RECORD_ID"
}'
clawlink_call_tool --tool "googlemeet_get_recordings_by_conference_record_id" \
--params '{
"conference_record_id": "YOUR_CONFERENCE_RECORD_ID"
}'
clawlink_call_tool --tool "googlemeet_end_active_conference" \
--params '{
"space_name": "spaces/YOUR_SPACE_ID"
}'
clawlink_list_integrations to confirm Google Meet is connected.clawlink_list_tools --integration google-meet to see the live catalog.clawlink_search_tools with a short query and integration google-meet.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → call │
│ │
│ Example: List conferences → Get details → Show results │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ 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.create_meet does not attach to any calendar event — calendar linking requires a separate Calendar tool call.meetingUri, meetingCode, and space.name from the create response immediately for downstream lookups.end_active_conference requires the space_name parameter and immediately drops all participants.| Status / Error | Meaning |
|---|---|
| ---------------- | --------- |
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration google-meet. |
| Missing connection | Google Meet is not connected. Direct the user to https://claw-link.dev/dashboard?add=google-meet. |
NOT_FOUND | Meeting space or conference record does not exist. Check the name/ID. |
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. |
```bash
openclaw plugins list
```
/new as a standalone message to reload the catalog.```bash
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
```
/new again and retry.google-meet.clawlink_describe_tool to verify parameter names and types before calling.clawlink_preview_tool first.Powered by ClawLink — an integration hub for OpenClaw
共 2 个版本