Install
openclaw skills install google-search-console-seoGoogle Search Console API integration with managed OAuth. Query search performance analytics, inspect URL indexing status, review sitemaps, and manage verified site properties. Use this skill when users want to monitor SEO performance or troubleshoot indexing issues.
openclaw skills install google-search-console-seo
Access Google Search Console via the Search Console API with managed OAuth authentication. Query search performance, inspect indexing status, review sitemaps, and manage verified sites.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Google Search Console API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Search Console |
|---|---|---|
![]() | ![]() | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Google Search Console |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Google Search │
│ (User Chat) │ │ (OAuth) │ │ Console API │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect GSC │ │
│ │ 4. Secure Token │
│ │ 5. Proxy Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Search │
│ File │ │ Auth │ │ Console │
└──────────┘ └──────────┘ └──────────┘
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 Search Console again."
# List verified sites
clawlink_call_tool --tool "google_search_console_list_sites" --params '{}'
# Query search analytics
clawlink_call_tool --tool "google_search_console_search_analytics_query" --params '{"site_url": "https://example.com/", "start_date": "2024-01-01", "end_date": "2024-01-31"}'
# Inspect a URL
clawlink_call_tool --tool "google_search_console_inspect_url" --params '{"site_url": "https://example.com/", "inspection_url": "https://example.com/page/"}'
All Google Search Console 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 Search Console 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-search-console in the list.
clawlink_list_tools --integration google-search-console
Response: Returns the live tool catalog for Google Search Console.
If Google Search Console tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration google-search-console| Tool | Description | Mode |
|---|---|---|
google_search_console_list_sites | List all verified sites (URL-prefix and domain properties) owned by the user | Read |
google_search_console_get_site | Get details and permission level for a specific site | Read |
google_search_console_add_site | Register a new site property in Search Console | Write |
google_search_console_delete_site | Remove a site from Search Console tracking | Write |
| Tool | Description | Mode |
|---|---|---|
google_search_console_search_analytics_query | Query clicks, impressions, CTR, and position metrics | Read |
| Tool | Description | Mode |
|---|---|---|
google_search_console_inspect_url | Inspect a specific URL for indexing status and issues | Read |
| Tool | Description | Mode |
|---|---|---|
google_search_console_list_sitemaps | List all sitemaps submitted for a site | Read |
google_search_console_get_sitemap | Get sitemap metadata (submitted/indexed counts, errors, timestamps) | Read |
google_search_console_submit_sitemap | Submit or resubmit a sitemap for a verified property | Write |
clawlink_call_tool --tool "google_search_console_list_sites" \
--params '{}'
clawlink_call_tool --tool "google_search_console_search_analytics_query" \
--params '{
"site_url": "https://example.com/",
"start_date": "2024-01-01",
"end_date": "2024-01-31",
"dimensions": ["query", "page"]
}'
clawlink_call_tool --tool "google_search_console_search_analytics_query" \
--params '{
"site_url": "https://example.com/",
"start_date": "2024-01-01",
"end_date": "2024-01-31",
"dimensions": ["country"],
"row_limit": 50
}'
clawlink_call_tool --tool "google_search_console_inspect_url" \
--params '{
"site_url": "https://example.com/",
"inspection_url": "https://example.com/important-page/"
}'
clawlink_call_tool --tool "google_search_console_submit_sitemap" \
--params '{
"site_url": "https://example.com/",
"feedpath": "/sitemap.xml"
}'
clawlink_call_tool --tool "google_search_console_add_site" \
--params '{
"site_url": "https://newsite.example.com/"
}'
clawlink_list_integrations to confirm Google Search Console is connected.clawlink_list_tools --integration google-search-console to see the live catalog.clawlink_search_tools with a short query and integration google-search-console.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → query → inspect → call │
│ │
│ Example: List sites → Query analytics → Show results │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ describe → preview → confirm → call │
│ │
│ Example: Describe tool → Preview → User approves │
│ → Execute sitemap submission │
└─────────────────────────────────────────────────────────────┘
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.site_url parameter must exactly match the property as returned by list_sites — include protocol, subdomain, and trailing slash where applicable.search_analytics_query only returns URLs with at least one impression; missing rows do not confirm non-indexing.errors, warnings, submitted, indexed) may be returned as strings — cast to integers before comparisons.| Status / Error | Meaning |
|---|---|
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration google-search-console. |
| Missing connection | Google Search Console is not connected. Direct the user to https://claw-link.dev/dashboard?add=google-search-console. |
NOT_VERIFIED | Site is not verified in Search Console. Complete verification first. |
FORBIDDEN | No permission level for the requested site. |
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-search-console.clawlink_describe_tool to verify parameter names and types before calling.clawlink_preview_tool first.Powered by ClawLink — an integration hub for OpenClaw
