mcp__gemini__code_analyze
Analyze code for quality and issues by specifying the programming language and analysis type. Improve code structure and identify potential problems with this AI-driven tool.
Instructions
Analyze code for quality and issues
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| analysis_type | No | Type of analysis | comprehensive | 
| code | Yes | Code to analyze | |
| language | No | Programming language | 
Input Schema (JSON Schema)
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "analysis_type": {
      "default": "comprehensive",
      "description": "Type of analysis",
      "type": "string"
    },
    "code": {
      "description": "Code to analyze",
      "type": "string"
    },
    "language": {
      "description": "Programming language",
      "type": "string"
    }
  },
  "required": [
    "code"
  ],
  "type": "object"
}