Skip to main content
Glama
Yoon-jongho

Claude-to-Gemini MCP Server

by Yoon-jongho

Claude-to-Gemini MCP Server

An Agent-to-Agent integration project using Google Gemini as an MCP (Model Context Protocol) server in Claude Code.

🎯 Project Purpose

  • Claude Code: Main AI (general coding, debugging, file creation/modification)

  • Gemini: Sub AI (large-scale context analysis, codebase review, 6 types of specialized image generation)

Related MCP server: Claude Code Gemini MCP

✨ Key Features

1. ask_gemini - Text/Code Generation

  • Purpose: General Gemini calls, large context analysis

  • Model Selection:

    • flash (default): Gemini 2.5 Flash - Free, fast

    • pro: Gemini 3.1 Pro - Latest model (released Feb 2026), highest performance

  • Context: Up to 1M tokens

2. gemini_analyze_codebase - Codebase Analysis

  • Purpose: Comprehensive analysis of the entire codebase

  • Analysis Types:

    • architecture: Architecture pattern analysis

    • duplications: Duplicate code detection

    • security: Security vulnerability scan

    • performance: Performance optimization opportunities

    • general: Comprehensive analysis

3. generate_logo - Logo/Icon Generation

  • Purpose: Creating logos, icons, and branding assets

  • Model: Nano Banana Pro (gemini-3-pro-image-preview) - Specialized for professional asset creation

  • Parameters:

    • prompt: Logo description (English)

    • brandName: Brand/text name to include (optional)

    • style: minimal | modern | vintage | playful | corporate

    • colorScheme: Color palette (optional)

  • Features: Simple and scalable design, 1:1 ratio default

4. generate_illustration - Illustration/Artwork Generation

  • Purpose: Illustrations, artwork, characters, concept art

  • Model: Nano Banana 2 (gemini-3.1-flash-image-preview) - Fast generation, free

  • Parameters:

    • prompt: Illustration description (English)

    • style: watercolor | cartoon | vector | oil_painting | sketch | anime | pixel_art

    • mood: cheerful | dark | calm | dramatic (optional)

    • aspectRatio: 1:1 | 16:9 | 9:16 | 4:3 | 3:4

    • numberOfImages: Number of images to generate (1-4)

5. generate_infographic - Infographic/Diagram Generation

  • Purpose: Infographics, diagrams, flowcharts, timelines

  • Model: Nano Banana Pro (gemini-3-pro-image-preview) - Thinking mode + text rendering optimization

  • Parameters:

    • prompt: Infographic topic/content (English)

    • data: Data/information to visualize (optional)

    • type: infographic | diagram | flowchart | timeline | comparison | stats

    • aspectRatio: 1:2 (default) | 1:4 | 1:1 | 16:9

  • Features: Easy-to-read text rendering, supports vertical long layouts

6. generate_photo - Realistic Photo Generation

  • Purpose: Photorealistic images, product mockups, advertising photos

  • Model: Imagen 4 (imagen-4.0-generate-001) - Highest realistic quality, paid

  • Parameters:

    • prompt: Photo description (English)

    • style: natural | studio | cinematic | aerial | macro

    • numberOfImages: Number of images to generate (1-4)

    • aspectRatio: 1:1 | 16:9 | 9:16 | 4:3 | 3:4

  • Features: Up to 4K resolution, includes automatic SynthID watermark

7. generate_banner - Marketing Banner/SNS Image Generation

  • Purpose: Marketing banners, SNS images, thumbnails, posters

  • Model: Nano Banana Pro (gemini-3-pro-image-preview) - Text + graphic combination

  • Parameters:

    • prompt: Banner description (English)

    • text: Text to include in the banner (optional)

    • platform: facebook | instagram | twitter | youtube | linkedin | web

    • aspectRatio: Automatic setting per platform

  • Features: Provides optimized size presets for each platform

8. edit_image - Image Editing/Modification

  • Purpose: Adding/deleting/modifying elements in existing images

  • Model: Nano Banana 2 (gemini-3.1-flash-image-preview) - Free

  • Parameters:

    • prompt: Editing instructions (English)

    • imagePath: Path to the image file to edit

    • action: modify | add | remove | style_transfer | enhance

  • Features: Interleaved editing, supports multi-turn conversational modifications

🛠 Tech Stack

  • Runtime: Node.js 18+

  • MCP SDK: @modelcontextprotocol/sdk

  • AI API: Google Gemini API (@google/generative-ai)

  • IDE: Claude Code (CLI + VSCode extension)

📦 Installation

1. Prerequisites

  • Node.js 18 or higher

  • Claude Pro/Max plan subscription

  • Google Gemini API key (ai.google.dev)

2. Clone the Project

git clone https://github.com/YOUR_USERNAME/claude-to-gemini.git
cd claude-to-gemini

3. Install Dependencies

npm install

4. Register MCP Server

claude mcp add gemini \
  --env GEMINI_API_KEY=YOUR_API_KEY_HERE \
  -- node /ABSOLUTE_PATH/claude-to-gemini/index.js

Note:

  • Replace YOUR_API_KEY_HERE with your actual Gemini API key

  • Replace /ABSOLUTE_PATH/ with the actual project path (e.g., /Users/username/projects/claude-to-gemini/index.js)

5. Verification

claude mcp list

Output example:

gemini - node /Users/username/projects/claude-to-gemini/index.js

🚀 Usage

Start Claude Code

claude

Basic Usage (Flash model, free)

ask_gemini 도구를 사용해서 "이 프로젝트 전체 구조를 분석해줘" 물어봐줘

Pro Model Usage (Paid, high performance)

ask_gemini 도구를 사용해서 model을 "pro"로 설정하고 "복잡한 아키텍처 설계해줘" 물어봐줘

Codebase Analysis

gemini_analyze_codebase 도구로 보안 취약점을 찾아줘

Logo Generation

generate_logo 도구로 brandName을 "CafeKiosk"로, style을 "modern"으로 설정하고
"A minimalist coffee cup logo with geometric shapes" 로고 만들어줘

Illustration Generation (Free)

generate_illustration 도구로 style을 "watercolor"로 설정하고
"A cozy cafe interior with warm lighting" 삽화 생성해줘

Infographic Generation

generate_infographic 도구로 type을 "flowchart"로 설정하고
"User authentication flow: login, verify, 2FA, dashboard" 다이어그램 만들어줘

Realistic Photo Generation (Paid - Imagen 4)

generate_photo 도구로 style을 "studio"로, numberOfImages를 4로 설정하고
"Professional food photography of a latte with beautiful latte art" 이미지 4개 생성해줘

Marketing Banner Generation

generate_banner 도구로 platform을 "instagram"으로 설정하고
text를 "Grand Opening 50% OFF"로
"Bright modern cafe promotion banner with coffee beans" 배너 만들어줘

Image Editing (Free)

edit_image 도구로 action을 "remove"로, imagePath를 "./photo.png"으로 설정하고
"Remove the background person and keep only the coffee cup" 편집해줘

💡 Use Cases

Scenario 1: Designing New Project Architecture

ask_gemini 도구로 React + Express + PostgreSQL
전자상거래 앱의 전체 아키텍처를 설계해줘

Scenario 2: Legacy Code Analysis

gemini_analyze_codebase 도구로
focus를 'duplications'로 설정해서 중복 코드를 찾아줘

Scenario 3: Large-scale Refactoring

ask_gemini 도구로 이 프로젝트 전체를 읽고
모던한 아키텍처로 마이그레이션 계획을 세워줘

📚 Practical Guide

How to use it in practice?

For more detailed practical usage, refer to the 📖 Practical Usage Guide (USECASES.md)!

Key Contents:

  • 🔍 Junior Code Review (Daily morning routine)

  • 🏗️ Large-scale Refactoring (1200-line migration)

  • 🚀 Project Onboarding (Grasp core concepts within 1 hour)

  • 🎨 Architecture Design (Monorepo structure)

  • 🖼️ Specialized Image Generation (Logo, illustration, infographic, photo, banner, editing)

  • 💡 Tips and Tricks (Cost optimization, model selection)

📊 Model Comparison

Text/Code Generation Models

Model

Context

Cost

Speed

Recommended Use

Gemini 2.5 Flash

1M tokens

Free

Fast

General analysis, most tasks

Gemini 3.1 Pro

1M tokens

Paid

Fast

Highest performance, complex reasoning

Image Generation Models

Model

Tool

Purpose

Cost

Features

Nano Banana Pro (gemini-3-pro-image-preview)

generate_logo, generate_infographic, generate_banner

Logo, infographic, banner

Paid

Professional asset creation, text rendering, thinking mode

Nano Banana 2 (gemini-3.1-flash-image-preview)

generate_illustration, edit_image

Illustration, image editing

Free

Fast generation, conversational editing, various styles

Imagen 4 (imagen-4.0-generate-001)

generate_photo

Realistic photo, product mockup

Paid

Up to 4K, photorealistic, includes SynthID

⚠️ Security Precautions

API Key Protection

Strictly Prohibited:

  • ❌ Uploading API keys to GitHub

  • ❌ Hardcoding API keys in code

  • ❌ Sharing API keys in public places

Recommendations:

  • ✅ Manage only via environment variables

  • ✅ Include .claude.json in .gitignore

  • ✅ Reissue immediately if API key is leaked

Required .gitignore Content

node_modules/
.claude.json
.env
*.key

🤝 How to Contribute

  1. Fork the Project

  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)

  3. Commit your Changes (git commit -m 'Add some AmazingFeature')

  4. Push to the Branch (git push origin feature/AmazingFeature)

  5. Open a Pull Request

📝 License

MIT License - See the LICENSE file for details

🔗 References

📧 Contact

Project-related inquiries: GitHub Issues


Made with ❤️ by [Your Name]

Available Tools

4 tools
ask_geminiA

Use Gemini for large context analysis (1M tokens), architecture design, or whole codebase review. Best for tasks requiring understanding of entire projects.

ParametersJSON Schema
NameRequiredDescriptionDefault
promptYesThe question or task for Gemini
contextNoOptional: Large codebase, multiple files, or extensive context to analyze
modelNoModel to use: 'flash' (default, free, fast) or 'pro' (3 Pro, latest model, better quality, paid)flash

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the 1M token capacity and model options (free/fast vs paid/better quality), which adds useful context about capabilities and cost implications. However, it doesn't cover rate limits, error handling, response format, or authentication requirements that would be important for a tool like this.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is perfectly concise with two sentences that each earn their place. The first sentence establishes the core purpose and key differentiators, while the second provides the essential usage guidance. No wasted words or redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (AI model interaction with large context), lack of annotations, and no output schema, the description is adequate but has clear gaps. It covers the main use cases and capacity but doesn't address response format, error conditions, or operational constraints that would be important for complete understanding.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all three parameters thoroughly. The description doesn't add any parameter-specific information beyond what's in the schema. The baseline of 3 is appropriate when the schema does the heavy lifting for parameter documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with specific verbs ('use Gemini for large context analysis, architecture design, or whole codebase review') and distinguishes it from siblings by emphasizing its suitability for tasks requiring understanding of entire projects, unlike image generation tools or potentially more focused code analysis tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use this tool ('large context analysis, architecture design, or whole codebase review'), but doesn't explicitly state when NOT to use it or name specific alternatives among the sibling tools. It implies usage for extensive tasks but lacks explicit exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

gemini_analyze_codebaseC

Specialized tool for analyzing entire codebases. Gemini will find patterns, duplications, architectural issues, and suggest improvements.

ParametersJSON Schema
NameRequiredDescriptionDefault
codebaseYesThe entire codebase or multiple files concatenated
focusNoWhat to focus on: 'architecture', 'duplications', 'security', 'performance', or 'general'

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the tool 'will find patterns, duplications, architectural issues, and suggest improvements,' but lacks details on how it operates (e.g., processing time, output format, limitations like codebase size, or whether it modifies code). For a complex analysis tool with zero annotation coverage, this is a significant gap in transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise with two sentences that efficiently state the tool's purpose and capabilities. It's front-loaded with the main function ('analyzing entire codebases') and avoids unnecessary details. However, it could be slightly more structured by explicitly separating scope from outcomes.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of codebase analysis, lack of annotations, and no output schema, the description is incomplete. It doesn't cover behavioral aspects like processing constraints, error handling, or result format, which are crucial for an AI agent to use the tool effectively. The description should compensate for these gaps but falls short.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents both parameters ('codebase' and 'focus') with descriptions and an enum for 'focus'. The description adds no additional meaning beyond what the schema provides, such as explaining how the 'codebase' should be formatted or what 'general' focus entails. Baseline 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'analyzing entire codebases' with specific outcomes like finding patterns, duplications, architectural issues, and suggesting improvements. It uses specific verbs ('find', 'suggest') and identifies the resource ('codebases'), but doesn't explicitly differentiate from sibling tools like 'ask_gemini' which might also handle code analysis in a different way.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'ask_gemini' (which might handle general queries) or specify contexts where this specialized analysis is preferred over other options. Usage is implied by the description but lacks explicit when/when-not instructions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

generate_image_geminiB

Generate images using Gemini 2.5 Flash Image (Nano Banana). Best for contextual understanding, image editing, multi-image composition, and iterative refinement. Free tier available.

ParametersJSON Schema
NameRequiredDescriptionDefault
promptYesDescription of the image to generate (in English, max 480 tokens)
numberOfImagesNoNumber of images to generate (1-4, default: 1)

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the model name ('Gemini 2.5 Flash Image (Nano Banana)') and use cases, but doesn't disclose important behavioral traits like rate limits, authentication needs, cost implications beyond 'Free tier available', or what happens on failure. The free tier mention is useful but insufficient for full transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately concise with two sentences that each serve a purpose: the first states the core function and model, the second provides usage context and cost information. It's front-loaded with the main purpose. However, the parenthetical model name '(Nano Banana)' adds minor clutter without clear value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 2 parameters with 100% schema coverage but no annotations and no output schema, the description is moderately complete. It covers the what and some when, but lacks important context about behavioral constraints, error handling, and output format. For an image generation tool with potential cost/rate implications, more completeness would be helpful.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents both parameters thoroughly. The description doesn't add any meaningful parameter semantics beyond what's in the schema - it doesn't explain prompt best practices, token limitations beyond the schema's 'max 480 tokens', or how 'numberOfImages' affects output. Baseline 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool generates images using a specific AI model (Gemini 2.5 Flash Image), which is a specific verb+resource combination. It distinguishes from sibling tools like 'ask_gemini' and 'gemini_analyze_codebase' by focusing on image generation rather than text analysis or code review. However, it doesn't explicitly differentiate from 'generate_image_imagen', which appears to be a similar image generation tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides some context about when to use this tool ('Best for contextual understanding, image editing, multi-image composition, and iterative refinement'), which implies usage scenarios. However, it doesn't explicitly state when NOT to use it or mention alternatives like the sibling 'generate_image_imagen' tool, leaving the agent to infer the best choice between similar tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

generate_image_imagenB

Generate images using Imagen 4. Best for photorealistic quality, high-resolution outputs, and professional branding. Paid service.

ParametersJSON Schema
NameRequiredDescriptionDefault
promptYesDescription of the image to generate (in English, max 480 tokens)
numberOfImagesNoNumber of images to generate (1-4, default: 1)

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It mentions 'Paid service' (implying cost/access restrictions) and quality aspects, but lacks critical behavioral details: it doesn't specify rate limits, authentication needs, output format (e.g., image URLs or files), processing time, or error handling. For a generative AI tool with no annotation coverage, this leaves significant gaps in understanding operational behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is highly concise and well-structured in a single sentence, with no wasted words. It front-loads the core action ('Generate images using Imagen 4') and efficiently lists key features and constraints, making it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of an image generation tool with no annotations and no output schema, the description is incomplete. It lacks information on output format (e.g., how images are returned), error conditions, cost details beyond 'Paid service,' and comparison with sibling tools. For a tool that likely produces binary or URL outputs, this omission is significant.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema fully documents both parameters (prompt and numberOfImages). The description adds no parameter-specific information beyond what's in the schema, such as prompt best practices or image count implications. Baseline 3 is appropriate as the schema handles parameter documentation adequately.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose as 'Generate images using Imagen 4' with specific capabilities ('photorealistic quality, high-resolution outputs, professional branding'). It distinguishes from sibling tools by specifying the Imagen 4 model, but doesn't explicitly contrast with 'generate_image_gemini' beyond mentioning 'Paid service' versus likely free alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides some usage context with 'Best for photorealistic quality...' and 'Paid service,' which implies when to prefer this over free alternatives. However, it doesn't explicitly state when to use this versus 'generate_image_gemini' or other siblings, nor does it mention any prerequisites or exclusions beyond the cost implication.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 3 tool updatesv1.0.0
    • Changedask_gemini1 field changed
      • changedInput schema / properties / model / description
        Previous value: -"Model to use: 'flash' (default, free, fast) or 'pro' (2.5 Pro, 1M tokens, better quality, paid)"New value: +"Model to use: 'flash' (default, free, fast) or 'pro' (3 Pro, latest model, better quality, paid)"
    • Addedgenerate_image_gemini
    • Addedgenerate_image_imagen
  2. 2 tool updates
    • First observedask_gemini
    • First observedgemini_analyze_codebase

TDQS

B3.1/5.0

Scored across 4 tools

Disambiguation3/5

The tools have overlapping purposes that could cause confusion. 'ask_gemini' and 'gemini_analyze_codebase' both target Gemini for analysis tasks, with the latter being a specialized subset of the former. The two image generation tools are clearly distinct in their use cases (Gemini for contextual/iterative work, Imagen for photorealism), but the analysis tools are not well-differentiated.

Naming Consistency2/5

Naming conventions are inconsistent. 'ask_gemini' uses a verb-object pattern, 'gemini_analyze_codebase' uses a noun-verb-object pattern with underscores, and both image tools use 'generate_image_' prefix but with different suffixes ('gemini' vs 'imagen'). This mixed style lacks a predictable pattern.

Tool Count4/5

Four tools is a reasonable count for a server bridging Claude and Gemini/Imagen services. It covers analysis and image generation without being overly sparse or bloated. However, the scope feels slightly thin given the potential breadth of interactions between these AI systems.

Completeness3/5

The server covers text analysis and image generation but has notable gaps. There are no tools for conversational interactions, file processing, or multimodal tasks beyond image generation. The domain appears to be 'Claude-to-Gemini integration,' but the surface lacks tools for common workflows like chat, document analysis, or combined text-image tasks.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • F
    license
    B
    quality
    Not graded
    maintenance
    Enables Claude Code to use Google Gemini AI capabilities for analyzing PDFs and images, generating and translating text, and reviewing code. Supports both CLI and API backends with different quota limits.
    4
    66 npm
    -
  • A
    license
    B
    quality
    D
    maintenance
    Enables Claude to collaborate with Gemini for code reviews, second opinions, and iterative software development. It facilitates multi-step workflows including PRD creation and code generation through an AI orchestration framework.
    2
    9 npm
    1
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Integrates Google's Gemini AI models into Claude Code and other MCP clients to provide second opinions, code comparisons, and token counting. It supports streaming responses and multi-turn conversations directly within your existing AI development workflow.
    3
    Apache 2.0