npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

gemini-grounding

v1.0.0

Published

MCP server that utilizes Google Gemini Grounding for real-time information access

Readme

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

Install Dependencies

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

Setup Environment

cp .env.example .env
# Edit .env and add your GEMINI_API_KEY

Build

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 -e GEMINI_API_KEY="${GEMINI_API_KEY}" gemini-grounding -- node /absolute/path/to/gemini-grounding/build/index.js

Or manually add to your configuration:

{
  "mcpServers": {
    "gemini-grounding": {
      "command": "node",
      "args": ["/absolute/path/to/gemini-grounding/build/index.js"],
      "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