/ 目錄 / 演練場 / google-ai-mode-skill
● 社群 PleasePrompto ⚡ 即開即用

google-ai-mode-skill

作者 PleasePrompto · PleasePrompto/google-ai-mode-skill

免費 Google AI Mode 搜尋含引用來源,由 Claude 驅動 — 持久化瀏覽器設定檔、查詢最佳化、節省 Token。

google-ai-mode-skill 讓 Claude 透過本地無頭瀏覽器搭配持久化設定檔查詢 Google 的 AI Mode(類 AI 概覽答案介面),回傳答案及引用來源供後續使用,並在送出前最佳化提示詞,以結構化 JSON 回傳以節省 Token。適合在付費搜尋 API 過於昂貴時使用的替代方案。

為什麼要用

核心特性

即時演示

實際使用效果

google-ai-mode-skill.replay ▶ 就緒
0/0

安裝

選擇你的客戶端

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "google-ai-mode-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/PleasePrompto/google-ai-mode-skill",
        "~/.claude/skills/google-ai-mode-skill"
      ],
      "_inferred": true
    }
  }
}

開啟 Claude Desktop → Settings → Developer → Edit Config。儲存後重啟應用。

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "google-ai-mode-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/PleasePrompto/google-ai-mode-skill",
        "~/.claude/skills/google-ai-mode-skill"
      ],
      "_inferred": true
    }
  }
}

Cursor 使用與 Claude Desktop 相同的 mcpServers 格式。專案級設定優先於全域。

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "google-ai-mode-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/PleasePrompto/google-ai-mode-skill",
        "~/.claude/skills/google-ai-mode-skill"
      ],
      "_inferred": true
    }
  }
}

點擊 Cline 側欄中的 MCP Servers 圖示,然後選 "Edit Configuration"。

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "google-ai-mode-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/PleasePrompto/google-ai-mode-skill",
        "~/.claude/skills/google-ai-mode-skill"
      ],
      "_inferred": true
    }
  }
}

格式與 Claude Desktop 相同。重啟 Windsurf 生效。

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "google-ai-mode-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/PleasePrompto/google-ai-mode-skill",
        "~/.claude/skills/google-ai-mode-skill"
      ]
    }
  ]
}

Continue 使用伺服器物件陣列,而非映射。

~/.config/zed/settings.json
{
  "context_servers": {
    "google-ai-mode-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/PleasePrompto/google-ai-mode-skill",
          "~/.claude/skills/google-ai-mode-skill"
        ]
      }
    }
  }
}

加入 context_servers。Zed 儲存後熱重載。

claude mcp add google-ai-mode-skill -- git clone https://github.com/PleasePrompto/google-ai-mode-skill ~/.claude/skills/google-ai-mode-skill

一行命令搞定。用 claude mcp list 驗證,claude mcp remove 移除。

使用場景

實戰用法: google-ai-mode-skill

如何在不付費使用搜尋 API 的情況下快速進行網路研究

👤 獨立開發者、業餘愛好者、任何有 Token 限制的使用者 ⏱ ~15 min intermediate

何時使用: 你想從 Google AI Mode 取得一個簡短、附有引用來源的事實性問題答案。

前置條件
  • 已安裝 Playwright(或 skill 指定的瀏覽器) — pip install playwright; playwright install chromium
  • 已複製 Skill — git clone https://github.com/PleasePrompto/google-ai-mode-skill ~/.claude/skills/google-ai-mode-skill
步驟
  1. 初始化設定檔(僅需一次)
    執行首次設定,讓瀏覽器設定檔完成登入並通過同意畫面。✓ 已複製
    → 設定檔目錄已建立;後續不再需要提示
  2. 查詢
    搜尋 Google AI Mode:「React 19.2 在編譯器預設值方面有什麼改變?」— 回傳答案與引用來源。✓ 已複製
    → 簡短答案 + 引用來源 URL
  3. 深入探索
    擷取前兩個引用頁面,並調和其中的矛盾之處。✓ 已複製
    → 調和後的摘要

結果: 取得與付費搜尋 API 相當、附有引用來源的答案,費用為 $0。

注意事項
  • 設定檔遭到登出 — 重新執行初始化流程;不要在不同機器間共用設定檔
  • Google 介面變更導致選擇器失效 — 鎖定 skill 版本;待上游發布修復後再更新
搭配使用: filesystem

在任何 Claude 工作流程中加入事實查核步驟

👤 任何需要發布內容的使用者 ⏱ ~30 min intermediate

何時使用: 在發布文章前,對文中的事實性陳述進行二次確認。

步驟
  1. 提取聲明
    從這份草稿中,提取值得查核的具體事實性陳述。✓ 已複製
    → 附有可查核性備註的聲明清單
  2. 逐一驗證
    對每個聲明執行 google-ai-mode;標記任何未獲確認的內容。✓ 已複製
    → 每個聲明的狀態 + 來源
  3. 修訂
    編輯草稿,修正或為未獲確認的聲明加上保留說明。✓ 已複製
    → 修訂後的草稿

結果: 減少發布內容中的錯誤。

注意事項
  • 確認偏誤 — 只查核自己懷疑的聲明 — 提取所有聲明,然後全部進行驗證
搭配使用: claude-blog-skill

組合

與其他 MCP 搭配,撬動十倍槓桿

google-ai-mode-skill + filesystem

將研究結果快取為 markdown 檔案以便重複使用

對今天回答的每個問題,將結果儲存為 ./notes/ 目錄下的 research_<slug>.md。✓ 已複製
google-ai-mode-skill + claude-blog-skill

在撰寫部落格草稿時內嵌事實查核

在每個部落格章節完成後,對其中的聲明執行 AI Mode 事實查核。✓ 已複製

工具

此 MCP 暴露的能力

工具輸入參數何時呼叫成本
ai-mode-query question string 任何 AI Mode 足以回答的事實性問題 browser automation only
query-optimization raw question 在送出較長或模糊的問題之前使用 0
profile-management first-time setup or reset 安裝時或遭到登出時使用 0

成本與限制

運行它的成本

API 配額
無(使用 Google 網頁介面 — 請遵守其服務條款及請求頻率限制)
每次呼叫 Token 數
~500–2k tokens per answer
費用
free
提示
依問題雜湊值快取答案;在同一個 session 中不要重複查詢相同問題

安全

權限、密鑰、影響範圍

憑證儲存: Google session 的 Cookie 儲存於持久化設定檔目錄中 — 請將該設定檔目錄視為敏感資料處理
資料出站: google.com
切勿授予: shared profile across machines

故障排查

常見錯誤與修復

Selectors no longer match

更新至最新 skill 版本;Google 介面會定期變更。

Profile keeps prompting for consent

重新初始化設定檔,並確保在操作過程中接受同意;請確認每次執行之間保留設定檔目錄。

驗證: ls <profile-dir>

替代方案

google-ai-mode-skill 對比其他方案

替代方案何時用它替代權衡
brave-search你需要使用第一方搜尋 API需要付費;無服務條款疑慮
kindly-web-search你需要一個禮貌且尊重同意聲明的爬蟲介面形式不同

更多

資源

📖 閱讀 GitHub 上的官方 README

🐙 查看未解決的 issue

🔍 瀏覽全部 400+ MCP 伺服器和 Skills