← 返回
未分类 中文

Google Meet

Google Meet API integration with managed OAuth. Create meeting spaces, inspect conference records, retrieve recordings and transcripts, and manage meeting pa...
Google Meet API集成与托管OAuth,创建会议空间、检查会议记录、检索录制和转录文本及管理会议等。
hith3sh hith3sh 来源
未分类 clawhub v1.0.6 2 版本 99752.5 Key: 无需
★ 6
Stars
📥 1,492
下载
💾 1
安装
2
版本
#latest

概述

Google Meet

!Google Meet

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.

Setup in 3 Steps

Step 1: InstallStep 2: Pair AccountStep 3: Connect Google Meet
:---::---::---:
!Install!PairApp-specific connection GIF coming soon
Run the install command in OpenClawSign in and approve the deviceOpen the dashboard and connect Google Meet

How It Works

┌─────────────────┐     ┌──────────────┐     ┌──────────────────┐
│   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

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."

Quick Start

# 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"}'

Authentication

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.

Getting Connected

  1. Install the ClawLink plugin (see Install above).
  2. Pair the plugin with clawlink_begin_pairing if it is not configured yet.
  3. Open https://claw-link.dev/dashboard?add=google-meet and connect Google Meet.
  4. Call clawlink_list_integrations to verify the connection is active.

Connection Management

List Connections

clawlink_list_integrations

Response: Returns all connected integrations. Look for google-meet in the list.

Verify Connection

clawlink_list_tools --integration google-meet

Response: Returns the live tool catalog for Google Meet.

Reconnect

If Google Meet tools are missing or the connection shows an error:

  1. Direct the user to https://claw-link.dev/dashboard?add=google-meet
  2. After they confirm, call clawlink_list_integrations to verify
  3. Then call clawlink_list_tools --integration google-meet

Security & Permissions

  • Access is scoped to meeting spaces and conference records the authenticated user has access to.
  • Write operations require explicit user confirmation. Before executing any create, update, or delete call, confirm the target resource and intended effect with the user.
  • Ending an active conference is a high-impact action and must always be confirmed.
  • Recordings and transcripts are subject to the organizer's domain policies — they may not be available for all meetings.

Tool Reference

Meeting Space Management

ToolDescriptionMode
-------------------------
googlemeet_create_meetCreate a new Meet space with optional configurationWrite
googlemeet_get_meetRetrieve details of a Meet space by its identifierRead
googlemeet_update_spaceUpdate an existing Meet space's settingsWrite
googlemeet_end_active_conferenceEnd an ongoing conference in a specified spaceWrite

Conference Records

ToolDescriptionMode
-------------------------
googlemeet_list_conference_recordsList past conference records, optionally filteredRead
googlemeet_get_conference_record_by_nameGet details for a specific conference recordRead

Participants

ToolDescriptionMode
-------------------------
googlemeet_list_participantsList all participants in a conference recordRead
googlemeet_list_participant_sessionsList all join/leave sessions for a participantRead
googlemeet_get_participant_sessionGet details of a specific participant sessionRead

Recordings

ToolDescriptionMode
-------------------------
googlemeet_list_recordingsList recording resources for a conference recordRead
googlemeet_get_recordings_by_conference_record_idGet all recordings for a specific conferenceRead

Transcripts

ToolDescriptionMode
-------------------------
googlemeet_get_transcripts_by_conference_record_idList all transcripts for a conferenceRead
googlemeet_get_transcriptGet a specific transcript by resource nameRead
googlemeet_list_transcript_entriesList structured transcript entries (speaker, time, text)Read
googlemeet_get_transcript_entryGet a specific transcript entry by resource nameRead

Code Examples

Create a new meeting space

clawlink_call_tool --tool "googlemeet_create_meet" \
  --params '{
    "config": {
      "accessType": "OPEN",
      "entryPointAccess": "anyone"
    }
  }'

List conference records

clawlink_call_tool --tool "googlemeet_list_conference_records" \
  --params '{
    "page_size": 20
  }'

Get meeting space details

clawlink_call_tool --tool "googlemeet_get_meet" \
  --params '{
    "name": "spaces/YOUR_SPACE_ID"
  }'

List participants in a conference

clawlink_call_tool --tool "googlemeet_list_participants" \
  --params '{
    "parent": "conferenceRecords/YOUR_CONFERENCE_RECORD_ID"
  }'

Get recordings for a conference

clawlink_call_tool --tool "googlemeet_get_recordings_by_conference_record_id" \
  --params '{
    "conference_record_id": "YOUR_CONFERENCE_RECORD_ID"
  }'

End an active conference

clawlink_call_tool --tool "googlemeet_end_active_conference" \
  --params '{
    "space_name": "spaces/YOUR_SPACE_ID"
  }'

Discovery Workflow

  1. Call clawlink_list_integrations to confirm Google Meet is connected.
  2. Call clawlink_list_tools --integration google-meet to see the live catalog.
  3. Treat the returned list as the source of truth. Do not guess or assume what tools exist.
  4. If the user describes a capability but the exact tool is unclear, call clawlink_search_tools with a short query and integration google-meet.
  5. If no Google Meet tools appear, direct the user to https://claw-link.dev/dashboard?add=google-meet.

Execution Workflow

┌─────────────────────────────────────────────────────────────┐
│  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                                   │
└─────────────────────────────────────────────────────────────┘
  1. For unfamiliar tools, ambiguous requests, or any write action, call clawlink_describe_tool first.
  2. Use the returned guidance, schema, whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.
  3. Prefer read, list, and get operations before writes.
  4. For writes or anything marked as requiring confirmation, call clawlink_preview_tool first.
  5. Execute with clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.
  6. If the tool call fails, report the real error. Do not invent results or restate the failure as a missing capability unless the live catalog supports that conclusion.

Notes

  • create_meet does not attach to any calendar event — calendar linking requires a separate Calendar tool call.
  • Capture meetingUri, meetingCode, and space.name from the create response immediately for downstream lookups.
  • Newly created spaces may return incomplete data — retry after 1–3 seconds if needed.
  • Recordings and transcripts require that recording/transcription was enabled and permitted by the organizer's domain policies.
  • After a meeting ends, recordings and transcripts may take several minutes to process — an empty result may be temporary.
  • end_active_conference requires the space_name parameter and immediately drops all participants.
  • HTTP 429 may occur under rapid calls — apply exponential backoff.

Error Handling

Status / ErrorMeaning
-------------------------
Tool not foundThe tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration google-meet.
Missing connectionGoogle Meet is not connected. Direct the user to https://claw-link.dev/dashboard?add=google-meet.
NOT_FOUNDMeeting space or conference record does not exist. Check the name/ID.
INVALID_ARGUMENTInvalid parameter or missing required field. Review the tool schema with clawlink_describe_tool.
Write rejectedUser did not confirm a write action. Always confirm before executing writes.

Troubleshooting: Tools Not Visible

  1. Check that the ClawLink plugin is installed:

```bash

openclaw plugins list

```

  1. If the plugin is installed but tools are missing, tell the user to send /new as a standalone message to reload the catalog.
  2. If a fresh chat does not help, run:

```bash

openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json

openclaw gateway restart

```

  1. After restart, tell the user to send /new again and retry.

Troubleshooting: Invalid Tool Call

  1. Ensure the integration slug is exactly google-meet.
  2. Use clawlink_describe_tool to verify parameter names and types before calling.
  3. For write operations, always call clawlink_preview_tool first.

Resources

  • Google Meet API Overview
  • Conference Records
  • Spaces
  • ClawLink: https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=google-meet-meetings
  • ClawLink Docs: https://docs.claw-link.dev/openclaw
  • ClawLink Verification: https://claw-link.dev/verify

Related Skills


Powered by ClawLink — an integration hub for OpenClaw

!ClawLink Logo

版本历史

共 2 个版本

  • v1.0.6 当前
    2026-06-09 16:13 安全 安全
  • v0.1.0
    2026-05-08 13:31 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

dev-programming

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 72 📥 181,671
dev-programming

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 677 📥 326,757
dev-programming

Mcporter

steipete
使用 mcporter CLI 直接列出、配置、认证及调用 MCP 服务器/工具(支持 HTTP 或 stdio),涵盖临时服务器、配置编辑及 CLI/类型生成功能。
★ 195 📥 67,533