Query Gemini with Google Search grounding
View on GitHubdnvriend/gemini-google-search-tool
gemini-google-search-tool
plugins/gemini-google-search-tool/skills/gemini-google-search-tool/SKILL.md
February 1, 2026
Select agents to install to:
npx add-skill https://github.com/dnvriend/gemini-google-search-tool/blob/main/plugins/gemini-google-search-tool/skills/gemini-google-search-tool/SKILL.md -a claude-code --skill skill-gemini-google-search-toolInstallation paths:
.claude/skills/skill-gemini-google-search-tool/# When to use - When you need real-time web information beyond the model's training cutoff - When you need verifiable sources and citations for AI responses - When you want to reduce hallucinations with Google Search grounding - When building AI workflows that require up-to-date information # Gemini Google Search Tool Skill ## Purpose The gemini-google-search-tool is a Python CLI tool and library that connects Gemini AI models to real-time web content through Google Search grounding. It automatically determines when a search would improve answers, executes appropriate queries, and returns grounded responses with verifiable sources. ## When to Use This Skill **Use this skill when:** - You need to query Gemini with real-time web information - You want automatic citations and source attribution - You're building AI agents that need current information - You need to verify AI responses against web sources - You want to integrate Google Search grounding into workflows **Do NOT use this skill for:** - Static knowledge queries that don't need real-time data - Tasks that don't require source attribution - Offline-only environments (requires internet and API key) ## CLI Tool: gemini-google-search-tool A professional CLI-first tool for querying Gemini with Google Search grounding, providing real-time web content with automatic citations. ### Installation ```bash # Install from source git clone https://github.com/dnvriend/gemini-google-search-tool.git cd gemini-google-search-tool uv tool install . # Verify installation gemini-google-search-tool --version ``` ### Prerequisites - Python 3.14 or higher - [uv](https://github.com/astral-sh/uv) package manager - Google Gemini API key ([get one free](https://aistudio.google.com/app/apikey)) - `GEMINI_API_KEY` environment variable ### Quick Start ```bash # Set API key export GEMINI_API_KEY='your-api-key-here' # Basic query gemini-google-search-tool query "Who won euro 2024?" # With inline citations gemini-google-searc
Issues Found: