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

@missdeer/gemini-mcp-rs

v0.1.6

Published

Rust implementation of MCP server that wraps the Gemini CLI

Readme

@missdeer/gemini-mcp-rs

License: GPLv3 MCP Compatible

NPM package for gemini-mcp-rs - A high-performance Rust implementation of MCP (Model Context Protocol) server that wraps the Gemini CLI.

Quick Start

Run directly without installation:

npx @missdeer/gemini-mcp-rs

Add to Claude Code in one command:

claude mcp add gemini-rs -s user --transport stdio -- npx @missdeer/gemini-mcp-rs

Installation (Optional)

For frequent use, install globally:

npm install -g @missdeer/gemini-mcp-rs

This will automatically download and install the appropriate binary for your platform (Linux, macOS, or Windows).

Then add to Claude Code:

claude mcp add gemini-rs -s user --transport stdio -- gemini-mcp-rs

Or manually add to your ~/.claude/settings.json:

{
  "mcpServers": {
    "gemini-rs": {
      "command": "gemini-mcp-rs",
      "transport": "stdio"
    }
  }
}

Features

  • ✨ High-performance Rust implementation
  • 🚀 Low memory footprint
  • 🔒 Configurable sandbox mode
  • 🔄 Session management for multi-turn conversations
  • ⚡ Fast async I/O with Tokio

Supported Platforms

  • Linux (x86_64, arm64)
  • macOS (x86_64, arm64)
  • Windows (x86_64, arm64)

Prerequisites

You must have the Gemini CLI installed and configured on your system.

Tool Parameters

The server provides a gemini tool with the following parameters:

  • PROMPT (required): Task instruction
  • sandbox: Run in sandbox mode (default: false)
  • SESSION_ID: Resume previous session
  • return_all_messages: Return full reasoning trace
  • model: Override Gemini model (default: GEMINI_FORCE_MODEL or Gemini CLI default)
  • timeout_secs: Timeout in seconds (1-3600, default: GEMINI_DEFAULT_TIMEOUT or 600)

Environment Variables

  • GEMINI_BIN: Override the Gemini CLI binary path (default: 'gemini')
  • GEMINI_DEFAULT_TIMEOUT: Default timeout in seconds (1-3600, default: 600)
  • GEMINI_FORCE_MODEL: Default model when request omits 'model' parameter

Documentation

For detailed documentation, see the GitHub repository.

License

This project is dual-licensed:

Non-Commercial / Personal Use - GNU General Public License v3.0

Free for personal projects, educational purposes, open source projects, and non-commercial use. See LICENSE for the full GPLv3 license text.

Commercial / Workplace Use - Commercial License Required

If you use gemini-mcp-rs in a commercial environment, workplace, or for any commercial purpose, you must obtain a commercial license.

This includes but is not limited to:

  • Using the software at work (any organization)
  • Integrating into commercial products or services
  • Using for client work or consulting
  • Offering as part of a SaaS/cloud service

Contact: [email protected] for commercial licensing inquiries.

See LICENSE-COMMERCIAL for more details.

Related Projects