1. Conduid
  2. Developer Tools
  3. Claude Gemini MCP Slim
MCP server · Developer Tools

Claude Gemini MCP Slim

Lightweight MCP integration bringing Google's Gemini AI capabilities to Claude Code with 1M+ token context window, smart model selection, and powerful code analysis tools

Unclaimed last commit 9 months ago claude-codeaigemini-apigemini-cliclaude-hooks
69Good

Scored 3 hours ago · breakdown

About Claude Gemini MCP Slim

Claude Gemini MCP Slim is an MCP server published by cmdaltctr in the Developer Tools category: lightweight MCP integration bringing Google's Gemini AI capabilities to Claude Code with 1M+ token context window, smart model selection, and powerful code analysis tools. It has been installed 0 times through Conduid.

The repository has 204 stars and 18 forks, with the last commit 9 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx claude-gemini-mcp-slim

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Claude Gemini MCP Slim

Powered by Claude · Grounded in docs

I know everything about Claude Gemini MCP Slim. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v2.0.0v2.0.0 - Major Release with Breaking Changes · 15 Jul 2025v2.0.0 - Major Release with Breaking Changes ⚠ BREAKING CHANGES Major security hardening with critical vulnerability fixes Enhanced MCP architecture with improved streaming capabilities Updated testing infrastructure requirements 🚀…
v1.3.1v1.3.1 - E2E Test Async Mocking Fixes · 15 Jul 2025E2E Test Async Mocking Fixes Fixed E2E Test Async Mocking Issues** - Fixed critical async mocking problems that were causing CI failures Resolved MagicMock can't be used in await expression Error** - Properly configured async function…
v1.3.0v1.3.0 - Comprehensive Testing Suite · 15 Jul 2025Comprehensive Testing Suite Added Comprehensive Testing Suite** - 1,540+ lines of unit, integration, and end-to-end tests with timeout protection CI/CD Pipeline** - 3 GitHub Actions workflows for automated testing, security scanning, and…
v1.2.0v1.2.0 - Enhanced Documentation · 15 Jul 2025Enhanced Documentation Added Enhanced Documentation Structure** - Improved README with table of contents and architecture overview Streamlined User Experience** - Better organization of setup and usage instructions Improved Issue…
v0.1.0v0.1.0 · 15 Jul 2025What's Changed fix: Pass GOOGLE_CLOUD_PROJECT env var to Gemini CLI subprocess by @jskorlol in https://github.com/cmdaltctr/claude-gemini-mcp-slim/pull/1 Feature/testing infrastructure by @cmdaltctr in…

README

Claude Gemini MCP Integration

Version Security License Python Status Slash Commands

🚀 What's Coming Next: I'm building an AI Agent Feedback Loop System that enables intelligent collaboration between Claude Code and Gemini AI. This will create a continuous improvement cycle where both AI agents learn from each other's suggestions, creating smarter code analysis and more contextual development assistance. Starting with Claude Code, then expanding to other IDEs. Stay tuned!

A lightweight integration that brings Google's Gemini AI capabilities to Claude Code through MCP (Model Context Protocol)

This project connects Claude Code (your coding assistant) with Google's Gemini AI models. Think of it as adding a second AI expert to your development team - one that can read and understand massive amounts of code at once (1M+ tokens, which is like reading hundreds of code files simultaneously).

With this integration, you can ask Gemini questions about your code, get security reviews, performance suggestions, and architectural advice - all without leaving your coding environment. It automatically chooses the right AI model for each task: fast responses for quick questions, deeper analysis for complex problems.

Table of Contents

Key Features

  • Quick Query - Ask Gemini any development question instantly
  • Code Analysis - Deep analysis with security, performance, and architecture insights
  • Codebase Analysis - Full project analysis using Gemini's massive context window
  • Automated Hooks - Pre-edit analysis, pre-commit review, and session summaries
  • 20+ Slash Commands - Simple shortcuts like /g, /analyze, /security
  • Smart Model Selection - Flash for speed, Pro for depth, automatic fallback
  • Real-time Streaming - Live output with progress indicators

How It Works

Claude Code ←→ MCP Server ←→ Gemini CLI/API ←→ Google Gemini Models
                    ↓
            Smart Model Selection
            (Flash for speed, Pro for depth)

Architecture Overview

The Gemini MCP server uses a shared architecture where one installation serves multiple AI clients and projects:

    Claude Desktop  │  Claude Code  │  Cursor IDE  │  VS Code + Extensions
                    │              │             │
                    └──────────────┼─────────────┘
                                   │
                      ┌─────────────────────────┐
                      │     MCP Protocol        │
                      │   (Tool Requests)       │
                      └─────────────────────────┘
                                   │
                          ┌─────────────────┐
                          │  Gemini MCP     │
                          │    Server       │
                          │ (Python/Shell)  │
                          └─────────────────┘
                                   │
                    ┌───────────────┼───────────────┐
                    │               │               │
          ┌─────────────────┐  ┌─────────────────┐  │
          │  Gemini API     │  │  Gemini CLI     │  │
          │  (Direct HTTP)  │  │  (Shell Command)│  │
          └─────────────────┘  └─────────────────┘  │
                    │               │               │
                    └───────────────┼───────────────┘
                                   │
                      ┌─────────────────────────┐
                      │   Google Gemini AI      │
                      │   (1M+ Token Context)   │
                      └─────────────────────────┘

Key Benefits

  • One installation serves all AI clients and projects
  • No project pollution - keeps your projects clean
  • Easy maintenance - update once, benefits everywhere
  • Smart fallbacks - API-first approach with CLI backup

File Structure

~/mcp-servers/                              ← Central location for all MCP servers
├── shared-mcp-env/                         ← Shared virtual environment
│   ├── bin/python                         ← Python interpreter for all MCPs
│   └── lib/python3.x/site-packages/       ← Shared dependencies (mcp, google-generativeai, etc.)
└── gemini-mcp/                             ← Complete Gemini MCP package
    ├── gemini_mcp_server.py                ← Main MCP server
    └── .claude/                            ← Complete slash commands system
        ├── hooks.json                      ← Hook definitions
        ├── commands/                       ← Native slash commands (10+ commands)
        │   ├── gemini.md                   ← /gemini command
        │   ├── analyze.md                  ← /analyze command
        │   └── ...                         ← Other command definitions
        └── scripts/
            └── slim_gemini_hook.py         ← Hook execution script

Project Structure (with hooks enabled)

your-project/
├── .claude → ~/mcp-servers/gemini-mcp/.claude  ← Symlink to shared hooks
├── src/                                    ← Your project files
├── README.md
└── (no venv or MCP files needed!)           ← Clean project structure

Multi-Client Support

The shared MCP architecture supports multiple AI clients simultaneously:

Supported Clients:

  • Claude Desktop - Core MCP tools only
  • Claude Code - Core MCP tools + hooks (if configured)
  • VS Code with Claude Code extension - Core MCP tools + hooks (if configured)
  • Cursor IDE - Core MCP tools only
  • Windsurf - Core MCP tools only
  • VS Code with other MCP extensions - Core MCP tools only
  • Any MCP-compatible client - Core MCP tools only

Important: Hook functionality (.claude/hooks.json) is exclusive to Claude Code ecosystem (Claude Code standalone + VS Code with Claude Code extension). No other AI client currently supports this automation system.

Quick Start

New to this project? Here's what you need to do:

  1. Get your Google API key from Google AI Studio
  2. Follow the complete setup guide in docs/SETUP/SETUP.md
  3. Test the integration with a simple query
  4. Explore the 20+ slash commands in docs/README-SLASH-COMMANDS.md

Installation time: ~5 minutes | Prerequisites: Python 3.10+, Node.js 16+

Usage Examples

Quick Development Questions

Use gemini_quick_query for:
- "How do I implement JWT authentication in Node.js?"
- "What's the difference between useEffect and useLayoutEffect?"
- "Best practices for error handling in Python async functions"

Code Analysis

Use gemini_analyze_code for:
- Security review of authentication functions
- Performance analysis of database queries
- Architecture review before major refactoring

Full Project Analysis

Use gemini_codebase_analysis for:
- Overall architecture assessment
- Security vulnerability scanning
- Performance bottleneck identification

Automated Hooks System

The hooks system provides intelligent automation that runs at key development moments:

Pre-edit Analysis:
- Automatically analyzes files before Claude Code edits them
- Provides context about security, performance, and architecture concerns
- Helps prevent issues by informing Claude Code before changes are made

Pre-commit Review:
- Analyzes staged changes before git commits
- Reviews code for critical bugs, security vulnerabilities, and quality issues
- Provides final quality check before code enters version control

Session Summary:
- Generates brief recap when Claude Code session ends
- Highlights key changes made and potential next steps
- Maintains development context between sessions

Benefits

For Developers

  • Instant access to Gemini's advanced AI capabilities
  • Seamless integration within Claude Code workflow
  • Smart model selection - fast responses when speed matters, deep analysis when needed
  • Real-time feedback during long analysis tasks

For Code Quality

  • Security analysis using Gemini's latest training data
  • Performance insights from large-scale pattern recognition
  • Architecture guidance based on current best practices
  • Error prevention through pre-edit analysis

For Productivity

  • Reduced context switching - stay in Claude Code
  • Faster debugging with AI-powered error analysis
  • Better decisions through comprehensive code review
  • Learning acceleration via instant expert guidance

Usage Examples with Slash Commands

The slash commands provide a much simpler way to access Gemini's powerful analysis without remembering the full MCP tool syntax:

# Instead of typing:
/mcp__gemini-mcp__gemini_quick_query "How do I implement JWT authentication in Node.js?"

# You can simply use:
/gemini How do I implement JWT authentication in Node.js?
# or even shorter:
/g How do I implement JWT authentication in Node.js?
# Instead of typing:
/mcp__gemini-mcp__gemini_codebase_analysis "./src" security

# You can simply use:
/codebase ./src security
# or even shorter:
/c ./src security

See docs/README-SLASH-COMMANDS.md for all available shortcuts.

What's Next?

Once everything is working:

  1. Try the tools - Start with simple queries: /mcp__gemini-mcp__gemini_quick_query "How do I optimize React performance?"
  2. Analyze some code - Analyze specific functions: /mcp__gemini-mcp__gemini_analyze_code "your function code here" security
  3. Review your project - Get architectural insights: /mcp__gemini-mcp__gemini_codebase_analysis "./src" architecture
  4. Explore slash commands - Check docs/README-SLASH-COMMANDS.md for 20+ shortcuts

Need Help?

  • Submit an Issue: If you encounter any problems, please submit an issue on our GitHub repository with details about your environment, steps to reproduce, and any error messages you received.
  • Use Labels: When submitting issues, please use appropriate labels/tags such as bug, feature-request, documentation, and so on (available labels) to help us categorize and address your concerns more efficiently.
  • Test files: Check the tests/ folder for examples and testing scripts
  • Slash commands: See docs/README-SLASH-COMMANDS.md for comprehensive command reference
  • Console Logs: Check your Claude Desktop/Code console for detailed error messages that can help diagnose issues

Further Documentation

Changelog

📋 Complete Changelog: For detailed release notes and full version history, see docs/CHANGELOG.md

Contributing

This project is designed to be lightweight and focused. The core functionality is complete, but contributions are welcome for:

  • Additional analysis types
  • Better error handling
  • Performance optimizations
  • Documentation improvements

How to Contribute

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/your-feature-name
  3. Make your changes: Implement your feature or bug fix
  4. Test with MCP integration: Ensure your changes work with this repo's MCP server
  5. Submit a pull request: Push to your fork and submit a PR to the main repository

Development Guidelines

  • Clean Python Code: Use type hints, docstrings, and follow the existing code structure
  • Security-First Approach: Implement proper input sanitization and API key protection
  • Modular Design: Keep functions focused and reusable with clear error handling
  • MCP Protocol Compliance: Follow the MCP server specifications for all tools
  • Comprehensive Documentation: Document all tools with clear descriptions and schemas
  • Concise Code Comments: Add brief comments to explain code blocks' purpose and functionality
  • Fallback Mechanisms: Implement API with CLI fallbacks for resilience
  • Testing: Verify changes work with both direct API and CLI integrations

Development Setup

To set up a local development environment for this MCP server:

Quick Setup (Recommended)

# Clone the repository
git clone https://github.com/yourusername/claude-gemini-mcp-slim.git
cd claude-gemini-mcp-slim

# Run the automated setup script
./setup-dev.sh

The setup script will:

  • Create a Python virtual environment (.venv)
  • Install all production and development dependencies
  • Set up unified Husky hooks for code quality and commit validation
  • Run a quick test to verify everything is working

Manual Setup

If you prefer to set up manually:

# Create virtual environment
python3 -m venv .venv
source .venv/bin/activate

# Install dependencies
pip install -r requirements.txt
pip install -r requirements-dev.txt

# Set up unified Husky hooks (handled by setup-dev.sh)
# This includes pre-commit formatting/linting and commit-msg validation

# Run tests
python -m pytest

Development Workflow

Once set up, your typical development workflow will be:

# Activate virtual environment
source .venv/bin/activate

# Make your changes
# ...

# Run tests
python -m pytest

# Run Husky hooks manually (optional, they run automatically on commit)
.husky/pre-commit  # Run formatting, linting, and tests
.husky/commit-msg  # Validate commit message format

# Commit changes (pre-commit hooks will run automatically)
git add .
git commit -m "Your commit message"

Important Notes:

  • The virtual environment (.venv) is automatically ignored by git
  • Husky hooks will run automatically on every commit to ensure code quality and enforce conventional commit messages
  • If you're using an IDE like Windsurf, make sure it's configured to use the virtual environment

License

MIT License

Copyright (c) 2025 Dr Muhammad Aizat Hawari

This project is licensed under the MIT License - see the LICENSE.md file for details.


Credits

Special thanks to the following tools and platforms that assisted during the research and development of this MCP:

  • Claude - AI assistant for code development and documentation
  • Perplexity - AI-powered research and information gathering
  • Warp Terminal - Modern terminal for enhanced development workflow

README mirrored from the source repository 3 hours ago. The original is authoritative.

Questions

About Claude Gemini MCP Slim

How do I install Claude Gemini MCP Slim?

Run npx claude-gemini-mcp-slim, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Claude Gemini MCP Slim safe to use with an AI agent?

Its trust score is 69 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Claude Gemini MCP Slim still maintained?

The last commit was 9 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.