← Claude to Gemini CLI MCP

Claude to Gemini CLI MCP 3850e73cdf81a00b44096c8f29c98d002908821f

source_git · trisc0/claude-to-gemini-cli · current release

4
Tools
0
Resources
0
Templates
0
Prompts

Observation

Observed 2026-08-25T22:59:04.259Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.

Server capabilities
{
  "tools": {
    "listChanged": true
  }
}

Tools 4

ToolCategoryAnnotationsRisk
ask_geminiAsk Gemini a question and get a response. Use this to get a second opinion, verify information, or leverage Gemini's strengths (e.g. Google Search grounding, code generation, multilingual).
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "prompt": {
      "type": "string",
      "description": "The question or prompt to send to Gemini"
    },
    "model": {
      "description": "Specific Gemini model to use (e.g. 'gemini-2.5-pro'). Defaults to Gemini CLI's default.",
      "type": "string"
    },
    "timeout": {
      "description": "Timeout in milliseconds. Default: 120000 (2 min)",
      "type": "number"
    }
  },
  "required": [
    "prompt"
  ]
}
— · —
gemini_compareSend a question to Gemini to get an independent perspective that can be compared with Claude's answer. Useful for cross-referencing.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "question": {
      "type": "string",
      "description": "The question to get Gemini's perspective on"
    },
    "claude_answer": {
      "description": "Claude's answer to include for direct comparison",
      "type": "string"
    },
    "model": {
      "description": "Specific Gemini model to use",
      "type": "string"
    }
  },
  "required": [
    "question"
  ]
}
— · —
gemini_second_opinionGet Gemini's second opinion on a proposed solution, approach, or code. Useful for peer-reviewing ideas before committing.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "proposal": {
      "type": "string",
      "description": "The solution, approach, or code to review"
    },
    "question": {
      "description": "Specific aspect to focus the review on",
      "type": "string"
    },
    "model": {
      "description": "Specific Gemini model to use",
      "type": "string"
    }
  },
  "required": [
    "proposal"
  ]
}
— · —
verify_with_geminiAsk Gemini to verify or fact-check a claim. Wraps the claim in a verification prompt so Gemini critically evaluates it.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "claim": {
      "type": "string",
      "description": "The claim or information to verify"
    },
    "context": {
      "description": "Additional context about where the claim came from",
      "type": "string"
    },
    "model": {
      "description": "Specific Gemini model to use",
      "type": "string"
    }
  },
  "required": [
    "claim"
  ]
}
— · —

Resources 0

Resource templates 0

Prompts 0

Let’s talk about MCP security.

Share your details and our security team will contact you.