gemini-grounding

gemini-grounding

An MCP server that provides real-time information access using Google Gemini's grounding capabilities, enabling search for current information, developer resources, documentation, and Reddit discussions.

Category
Visit Server

README

<div align="center"> <h1>Gemini Grounding MCP Server</h1> </div>

An MCP (Model Context Protocol) server that provides real-time information access using Google Gemini's grounding capabilities. This server enables MCP-compatible clients to search for current information, developer resources, documentation, and Reddit discussions using Gemini's built-in Google Search grounding.

ā“ Why?

When working with AI assistants like Claude Code, you often need current information and community insights that are beyond the model's knowledge cutoff. Claude Code refuses to search Reddit and have limitations on accessing real-time information.

This MCP server bypasses these limitations by leveraging Gemini's grounding capabilities, which can search the web and other sources to provide current information, code examples, discussions, and community insights directly within your AI workflow.

✨ Features

  • šŸ” Real-time Search: Access current information through Gemini's Google Search grounding
  • šŸ‘Øā€šŸ’» Developer-Focused: Tools for searching code examples, documentation, and troubleshooting
  • šŸ’¬ Reddit Integration: Search Reddit discussions and community insights
  • šŸ“š Automatic Citations: Source links and attribution provided automatically by Gemini
  • šŸ”— Multi-Source Synthesis: Combines information from multiple web sources
  • šŸŽÆ Context-Aware: Tailored search results based on programming language and framework
  • āœ… Fact Verification: Built-in fact-checking and accuracy validation

šŸ“¦ Installation

Prerequisites

Option 1: Use with npx

npx gemini-grounding

Option 2: Build from Source

git clone https://github.com/epilande/gemini-grounding.git
cd gemini-grounding
pnpm install
pnpm build

Getting a Gemini API Key

  1. Visit Google AI Studio
  2. Create or select a project
  3. Generate an API key
  4. Add the key to your .env file

šŸŽ® Usage

This server works with any MCP-compatible client.

Claude Code

Add this server to your Claude Code MCP configuration using the claude mcp add command:

claude mcp add gemini-grounding -e GEMINI_API_KEY="${GEMINI_API_KEY}" -- npx -y gemini-grounding

Or manually add to your configuration:

{
  "mcpServers": {
    "gemini-grounding": {
      "command": "npx",
      "args": ["-y", "gemini-grounding"],
      "env": {
        "GEMINI_API_KEY": "${GEMINI_API_KEY}"
      }
    }
  }
}

Verification

After adding to your configuration:

  1. Restart your MCP client (e.g., Claude Code)
  2. Open a new conversation
  3. Look for Gemini grounding tools in the tool picker
  4. Test with queries like:
    • "Why is neovim the best editor? Search reddit"
    • "What are the new Go lang features?"
    • "Latest docs for React hooks"
    • "What are useEffect dependency array best practices"

šŸ› ļø Tools

search_with_grounding

General purpose search with Gemini grounding capabilities.

Parameters:

  • query (required): Search query
  • context (optional): Development context or additional information
  • focus (optional): Focus area - "general", "code", "documentation", or "troubleshooting"

search_developer_resources

Specialized search for developer resources and documentation.

Parameters:

  • query (required): Technical query
  • language (optional): Programming language (e.g., JavaScript, Python, Rust)
  • framework (optional): Framework or library (e.g., React, Express, Django)

search_documentation

Search for official documentation and API references.

Parameters:

  • query (required): Documentation query
  • technology (optional): Technology, framework, or tool name

search_reddit

Search Reddit discussions and community insights.

Parameters:

  • query (required): Search query for Reddit content
  • subreddit (optional): Specific subreddit to search (e.g., "programming", "reactjs")

šŸ—ļø Architecture

ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”
│        MCP-Compatible Client        │
│  • Claude Code, Cursor, etc.        │
│  • File editing & bug fixing        │
│  • Codebase analysis                │
│  • Development workflows            │
ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”¬ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜
              │ MCP Integration
ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā–¼ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”
│   Node.js Grounding Agent Service   │
│  • Query routing & analysis         │
│  • Context management               │
│  • Response formatting              │
ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”¬ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜
              │ Single API Call
ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā–¼ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”
│      Gemini 2.5 Flash               │
│  • Google Search grounding          │
│  • Real-time information access     │
│  • Automatic source citation        │
│  • Multi-source synthesis           │
ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜

šŸ”§ Development

# Development mode
pnpm dev

# Build
pnpm build

# Production
pnpm start

šŸ› Troubleshooting

Common Issues

Server fails to start with "GEMINI_API_KEY environment variable is required"

  • Ensure you've created a .env file with your API key
  • Or pass the API key in the MCP configuration env section
  • Verify your API key is valid at Google AI Studio

Tools don't appear in your MCP client

  • Check that the file path in your configuration is absolute and correct
  • Restart your MCP client after making configuration changes
  • Verify the server builds successfully with pnpm build
  • Check your client's logs for any error messages

"Module not found" errors

  • Run pnpm install to ensure all dependencies are installed
  • Make sure you're using Node.js 18 or later
  • Try deleting node_modules and running pnpm install again

Search requests fail or timeout

  • Verify your Gemini API key has quota remaining
  • Check your internet connection
  • Ensure the Gemini API service is accessible from your network

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured