3850e73cdf81a00b44096c8f29c98d002908821fsource_git · trisc0/claude-to-gemini-cli · current release
Observed 2026-08-25T22:59:04.259Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"tools": {
"listChanged": true
}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
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"
]
} | — | — · — | — |