Enables access to Google's Gemini AI models for code analysis, security reviews, and performance suggestions with support for massive context windows (1M+ tokens)
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Claude Gemini MCP Integrationanalyze this Python function for potential security vulnerabilities"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Claude Gemini MCP Integration
π 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
Related MCP server: Gemini MCP Server
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,/securitySmart 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 scriptProject 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 structureMulti-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:
Get your Google API key from Google AI Studio
Follow the complete setup guide in docs/SETUP/SETUP.md
Test the integration with a simple query
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 refactoringFull Project Analysis
Use gemini_codebase_analysis for:
- Overall architecture assessment
- Security vulnerability scanning
- Performance bottleneck identificationAutomated 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 sessionsBenefits
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 securitySee docs/README-SLASH-COMMANDS.md for all available shortcuts.
What's Next?
Once everything is working:
Try the tools - Start with simple queries:
/mcp__gemini-mcp__gemini_quick_query "How do I optimize React performance?"Analyze some code - Analyze specific functions:
/mcp__gemini-mcp__gemini_analyze_code "your function code here" securityReview your project - Get architectural insights:
/mcp__gemini-mcp__gemini_codebase_analysis "./src" architectureExplore slash commands - Check
docs/README-SLASH-COMMANDS.mdfor 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 scriptsSlash commands: See
docs/README-SLASH-COMMANDS.mdfor comprehensive command referenceConsole Logs: Check your Claude Desktop/Code console for detailed error messages that can help diagnose issues
Further Documentation
docs/SETUP/SETUP.md - Complete installation and configuration guide
docs/README-SLASH-COMMANDS.md - Slash commands reference
docs/SECURITY.md - Security documentation and hardening details
docs/TESTING.md - Testing guide and best practices
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
Fork the repository
Create a feature branch:
git checkout -b feature/your-feature-nameMake your changes: Implement your feature or bug fix
Test with MCP integration: Ensure your changes work with this repo's MCP server
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.shThe 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 pytestDevelopment 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 gitHusky 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