Gemini MCP Server
Enables comprehensive codebase analysis using Google's Gemini CLI and its massive context window. Supports file/directory analysis, security audits, architecture analysis, feature verification, and complete project overviews for large codebases that exceed other AI models' context limits.
README
Gemini MCP Server
An MCP (Model Context Protocol) server that provides tools for analyzing codebases using the Gemini CLI. This server leverages Gemini's massive context window to perform comprehensive codebase analysis, verification, and security audits.
Features
- File Analysis: Analyze specific files using Gemini's @ syntax
- Directory Analysis: Analyze entire directories and subdirectories
- All Files Analysis: Analyze complete projects using --all_files flag
- Implementation Verification: Check if specific features are implemented
- Security Audits: Perform security analysis for common vulnerabilities
- Architecture Analysis: Analyze codebase structure and patterns
Prerequisites
-
Gemini CLI: You must have the Gemini CLI installed and configured
# Using npx (no installation required) npx https://github.com/google-gemini/gemini-cli # Install Gemini CLI (example - check official docs for latest instructions) npm install -g @google/gemini-cli@latest # or brew install gemini-cli -
Python 3.12+ and uv package manager
Installation
- Clone or download this project
- Install dependencies:
cd gemini-mcp uv sync
Usage
Running the MCP Server
# Run directly
uv run python -m gemini_mcp
# Or install and run
uv pip install -e .
gemini-mcp
Available Tools
1. gemini_analyze_files
Analyze specific files using Gemini CLI with @ syntax.
Parameters:
files(array): List of file paths to analyzeprompt(string): Analysis prompt to send to Geminiworking_directory(optional): Directory to run command from
Example:
{
"name": "gemini_analyze_files",
"arguments": {
"files": ["src/main.py", "src/utils.py"],
"prompt": "Explain the purpose and structure of these files"
}
}
2. gemini_analyze_directories
Analyze entire directories using Gemini CLI.
Parameters:
directories(array): List of directory paths to analyzeprompt(string): Analysis prompt to send to Geminiworking_directory(optional): Directory to run command from
Example:
{
"name": "gemini_analyze_directories",
"arguments": {
"directories": ["src", "tests"],
"prompt": "Analyze test coverage for the source code"
}
}
3. gemini_analyze_all_files
Analyze all files in the current directory using --all_files flag.
Parameters:
prompt(string): Analysis prompt to send to Geminiworking_directory(optional): Directory to run command from
Example:
{
"name": "gemini_analyze_all_files",
"arguments": {
"prompt": "Give me an overview of this entire project"
}
}
4. gemini_verify_implementation
Verify if specific features or patterns are implemented in the codebase.
Parameters:
feature_name(string): Name of the feature to verifysearch_paths(array): Directories/files to search inverification_prompt(optional): Custom verification promptworking_directory(optional): Directory to run command from
Example:
{
"name": "gemini_verify_implementation",
"arguments": {
"feature_name": "JWT authentication",
"search_paths": ["src", "middleware"]
}
}
5. gemini_security_audit
Perform security analysis of the codebase.
Parameters:
audit_type(enum): Type of audit -sql_injection,xss,auth,general,input_validationpaths(array): Paths to audit (files or directories)working_directory(optional): Directory to run command from
Example:
{
"name": "gemini_security_audit",
"arguments": {
"audit_type": "sql_injection",
"paths": ["src/api", "src/database"]
}
}
6. gemini_architecture_analysis
Analyze codebase architecture and patterns.
Parameters:
analysis_type(enum): Type of analysis -overview,dependencies,patterns,structure,couplingpaths(array): Paths to analyzeworking_directory(optional): Directory to run command from
Example:
{
"name": "gemini_architecture_analysis",
"arguments": {
"analysis_type": "overview",
"paths": ["src"]
}
}
Integration with Claude Code
Using claude mcp command (Recommended)
The easiest way to add this MCP server to Claude Code is using the built-in claude mcp command with uv's script dependencies:
# Add the MCP server using uv script execution
claude mcp add gemini-mcp uv run /path/to/gemini-mcp/src/gemini_mcp/__init__.py
Or if you want to install it globally first:
cd /path/to/gemini-mcp
uv pip install -e .
claude mcp add gemini-mcp gemini-mcp
Manual Configuration
Alternatively, you can manually add it to your MCP configuration:
{
"mcpServers": {
"gemini-mcp": {
"command": "uv",
"args": ["run", "python", "-m", "gemini_mcp"],
"cwd": "/path/to/gemini-mcp"
}
}
}
Or if installed globally:
{
"mcpServers": {
"gemini-mcp": {
"command": "gemini-mcp"
}
}
}
Managing the MCP Server
# List all MCP servers
claude mcp list
# Remove the server if needed
claude mcp remove gemini-mcp
# Re-add after updates
claude mcp add gemini-mcp uv run /path/to/gemini-mcp/src/gemini_mcp/__init__.py
Using MCP Prompts
The server exposes prompts that can be used directly via slash commands:
# Analyze specific files
/mcp__gemini_mcp__analyze_files files=src/main.py,src/utils.py
# Security audit
/mcp__gemini_mcp__security_audit audit_type=sql_injection paths=src/api,src/database
# Architecture analysis
/mcp__gemini_mcp__architecture_analysis analysis_type=overview paths=src
# Verify if a feature is implemented
/mcp__gemini_mcp__verify_feature feature_name="JWT authentication" search_paths=src,middleware
# Get project overview
/mcp__gemini_mcp__project_overview
# Get focused project overview
/mcp__gemini_mcp__project_overview focus="API architecture"
Available Prompts
The MCP server exposes the following prompts:
-
analyze_files- Analyze specific files with optional custom prompt- Arguments:
files(required),prompt(optional)
- Arguments:
-
security_audit- Perform security audits- Arguments:
audit_type(required: sql_injection, xss, auth, general, input_validation),paths(required)
- Arguments:
-
architecture_analysis- Analyze codebase architecture- Arguments:
analysis_type(required: overview, dependencies, patterns, structure, coupling),paths(required)
- Arguments:
-
verify_feature- Verify if features are implemented- Arguments:
feature_name(required),search_paths(optional)
- Arguments:
-
project_overview- Get comprehensive project overview- Arguments:
focus(optional)
- Arguments:
Use Cases
Large Codebase Analysis
When analyzing large codebases that exceed Claude's context limits, use Gemini's massive context window:
- Full project overviews
- Cross-file dependency analysis
- Architecture documentation generation
Feature Verification
Check if specific features are implemented:
- Authentication systems
- Error handling patterns
- Security measures
- Design patterns
Security Audits
Perform comprehensive security analysis:
- SQL injection vulnerability scanning
- XSS vulnerability detection
- Authentication/authorization review
- Input validation analysis
Code Quality Assessment
Analyze code quality and structure:
- Architectural pattern compliance
- Code organization evaluation
- Coupling analysis
- Dependency management review
Development
Project Structure
gemini-mcp/
�� src/
�� gemini_mcp/
�� __init__.py # Main MCP server implementation
�� pyproject.toml # Project configuration
�� README.md # This file
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
License
This project is licensed under the MIT License.
Troubleshooting
Common Issues
-
"Gemini CLI not found"
- Ensure Gemini CLI is installed and in your PATH
- Verify installation with
which gemini
-
API Key Issues
- Configure Gemini CLI with your API key:
gemini config set api-key YOUR_KEY - Check if the key is valid with a simple test:
gemini -p "Hello"
- Configure Gemini CLI with your API key:
-
Permission Errors
- Ensure the working directory is accessible
- Check file permissions for the files you're trying to analyze
-
Large File Timeouts
- For very large codebases, consider analyzing specific subdirectories first
- Use the directory analysis tools to break down the analysis
Updates and Maintenance
For updates to this local MCP server:
# If this is a git repository
cd /path/to/gemini-mcp
git pull
uv sync
# Update dependencies
uv sync --upgrade
# If installed with -e flag, changes are automatically reflected
# Otherwise, reinstall after updates:
uv pip install -e .
Since this is installed in "editable" mode with -e, code changes are automatically reflected without reinstalling.
Support
For issues specific to this MCP server, please check the logs and ensure:
- Gemini CLI is properly installed and configured
- File paths are correct and accessible
- Working directory permissions are set correctly
For Gemini CLI issues, refer to the official Gemini documentation.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。