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-search-mcp

v0.3.1

Published

Launches the Gemini Search MCP Python server via Node CLI.

Readme

Gemini Search MCP

PyPI version npm version CI Tests License: MIT

Gemini Search MCP packages a Model Context Protocol server that exposes five tools:

  • web_search – Uses Gemini with Google Search grounding to answer general questions.
  • document_question_answering – Converts local documents to captioned markdown and asks Gemini to answer questions about their contents.
  • get_document_content – Converts a document to markdown and returns the full content for reading.
  • get_document_chunk – Retrieves specific chunks of large documents for easier processing.
  • get_next_chunk – Automatically continues reading from where you left off (stateful).

Installation

Python (pip)

pip install gemini-search-mcp

Node.js (npm)

npm install -g gemini-search-mcp

Usage

Set your Google API key (must have Gemini access):

export GOOGLE_API_KEY="your-key"

Run the MCP server (defaults to stdio transport):

gemini-search-mcp run
# or simply
# gemini-search-mcp

Configure Codex automatically (writes to ~/.codex/config.toml by default):

gemini-search-mcp configure --api-key "YOUR_KEY"

Configure Copilot CLI (writes to ~/.copilot/config.json):

gemini-search-mcp configure --cli-type copilot --api-key "YOUR_KEY"

Configure both Codex and Copilot CLI at once:

gemini-search-mcp configure --cli-type both --api-key "YOUR_KEY"

For npm/npx installation with custom command:

gemini-search-mcp configure --command npx --command-args -y gemini-search-mcp --api-key "YOUR_KEY"

Clear cached conversion artifacts:

gemini-search-mcp clear-cache
# 선택 옵션: --cache-dir /custom/path --remove-root

Development

Install in editable mode with testing dependencies:

pip install -e .

Ensure LibreOffice is installed and on PATH if you plan to convert non-PDF documents.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Publishing

For maintainers: See PUBLISHING.md for instructions on how to publish new versions to PyPI and npm.

Changelog

See CHANGELOG.md for a list of changes in each version.

License

MIT – all rights reserved.