470716910982be03cdf948fef9f1d87be491afb9source_git · shunl12324/claude-code-gemini-mcp · current release
Observed 2026-08-25T15:32:35.724Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"tools": {
"listChanged": true
}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
gemini_brainstormLet Gemini brainstorm on a topic and generate multiple creative ideas or solutions with pros and consInput schema{
"type": "object",
"properties": {
"topic": {
"type": "string",
"description": "The topic to brainstorm"
},
"constraints": {
"type": "string",
"description": "Constraints or requirements to consider"
},
"count": {
"type": "number",
"minimum": 3,
"maximum": 10,
"description": "Number of ideas to generate (default: 5)"
}
},
"required": [
"topic"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
gemini_querySend any query to Gemini-3-pro-preview modelInput schema{
"type": "object",
"properties": {
"prompt": {
"type": "string",
"description": "The complete prompt to send"
},
"systemPrompt": {
"type": "string",
"description": "Optional system prompt"
},
"temperature": {
"type": "number",
"minimum": 0,
"maximum": 2,
"description": "Sampling temperature (0-2), default 0.7"
}
},
"required": [
"prompt"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
gemini_reviewLet Gemini review code, architecture design, or technical solutionsInput schema{
"type": "object",
"properties": {
"content": {
"type": "string",
"description": "The content to review (code, design document, etc.)"
},
"reviewType": {
"type": "string",
"enum": [
"code",
"architecture",
"security",
"performance"
],
"description": "Type of review: code, architecture, security, or performance"
},
"focus": {
"type": "string",
"description": "Specific aspects to focus on"
}
},
"required": [
"content",
"reviewType"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
gemini_thinkLet Gemini-3-pro-preview deeply analyze complex problems, perform reasoning and brainstormingInput schema{
"type": "object",
"properties": {
"problem": {
"type": "string",
"description": "The problem or task to analyze"
},
"context": {
"type": "string",
"description": "Related background information or context"
},
"thinkingStyle": {
"type": "string",
"enum": [
"analytical",
"creative",
"critical",
"systematic"
],
"description": "Thinking style: analytical (logical analysis), creative (divergent thinking), critical (critical evaluation), systematic (systematic decomposition)"
}
},
"required": [
"problem"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |