/ ディレクトリ / プレイグラウンド / google-ai-mode-skill
● コミュニティ PleasePrompto ⚡ 即起動

google-ai-mode-skill

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

Free Google AI Mode search with citations, driven by Claude — persistent browser profile, query optimization, token-efficient.

google-ai-mode-skill lets Claude query Google's AI Mode (the AI-overview-style answer surface) via a local headless browser with a persistent profile. It returns the answer + citations for further use, optimized prompts on the way in, and minimizes tokens by returning structured JSON. Good alternative when paid search APIs are overkill.

なぜ使うのか

主な機能

ライブデモ

実際の動作

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

How to do quick web research without paying for a search API

👤 Solo devs, hobbyists, anyone token-constrained ⏱ ~15 min intermediate

使うタイミング: You want a short, cited answer to a factual question from Google's AI Mode.

前提条件
  • Playwright (or the skill's browser of choice) installed — pip install playwright; playwright install chromium
  • Skill cloned — git clone https://github.com/PleasePrompto/google-ai-mode-skill ~/.claude/skills/google-ai-mode-skill
フロー
  1. Seed the profile once
    Run the first-time setup so the browser profile is logged in and past the consent screens.✓ コピーしました
    → Profile dir populated; no further prompts needed
  2. Query
    Search Google AI Mode: 'What changed in React 19.2 regarding compiler defaults?' — return answer + citations.✓ コピーしました
    → Short answer + citation URLs
  3. Drill deeper
    Fetch the top two citation pages and reconcile any contradictions.✓ コピーしました
    → Reconciled summary

結果: A cited answer comparable to a paid search API, at $0.

注意点
  • Profile gets logged out — Re-run the seeding flow; don't share the profile across machines
  • Google layout changes and selectors break — Pin the skill version; update when upstream ships a fix
組み合わせ: filesystem

Add a fact-check pass to any Claude workflow

👤 Anyone producing content they'll publish ⏱ ~30 min intermediate

使うタイミング: Before publishing a post, double-check factual claims.

フロー
  1. Extract claims
    From this draft, extract specific factual claims that are worth checking.✓ コピーしました
    → Claim list with verifiability notes
  2. Verify each
    Run google-ai-mode on each claim; flag anything unconfirmed.✓ コピーしました
    → Per-claim status + sources
  3. Revise
    Edit the draft to correct or caveat unconfirmed claims.✓ コピーしました
    → Revised draft

結果: Content with fewer publishable errors.

注意点
  • Confirmation bias — only checking claims you suspect — Extract all claims, then verify all of them
組み合わせ: claude-blog-skill

組み合わせ

他のMCPと組み合わせて10倍の力を

google-ai-mode-skill + filesystem

Cache research results as markdown files for reuse

For every question answered today, save a research_<slug>.md in ./notes/.✓ コピーしました
google-ai-mode-skill + claude-blog-skill

Inline fact-checking during blog drafting

After each blog section, run AI-Mode fact checks on the claims.✓ コピーしました

ツール

このMCPが提供する機能

ツール入力呼び出すタイミングコスト
ai-mode-query question string Any factual question where AI Mode is adequate browser automation only
query-optimization raw question Before sending a long or vague question 0
profile-management first-time setup or reset Install or when logged out 0

コストと制限

運用コスト

APIクォータ
none (uses Google web surface — respect their ToS and rate limits)
呼び出しあたりのトークン
~500–2k tokens per answer
金額
free
ヒント
Cache answers by question hash; don't re-query within a session

セキュリティ

権限、シークレット、影響範囲

認証情報の保管: Google session cookies in the persistent profile directory — treat the profile dir as sensitive
データ送信先: google.com
絶対に付与しない: shared profile across machines

トラブルシューティング

よくあるエラーと対処法

Selectors no longer match

Update to latest skill version; Google UI changes periodically.

Profile keeps prompting for consent

Re-seed the profile with consent accepted; make sure you keep the profile dir between runs.

確認: ls <profile-dir>

代替案

google-ai-mode-skill 他との比較

代替案代わりに使う場面トレードオフ
brave-searchYou want a first-party search APICosts money; no ToS ambiguity
kindly-web-searchYou want a polite, consent-respecting crawlerDifferent shape

その他

リソース

📖 GitHub の公式 README を読む

🐙 オープンな issue を見る

🔍 400以上のMCPサーバーとSkillsを見る