mcp__gemini__analyze_codebase
Analyze codebases with AI-driven insights to identify patterns, dependencies, and optimizations. Generate comprehensive reports to enhance code quality and maintainability.
Instructions
Comprehensive codebase analysis with AI insights
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| includeAnalysis | No | Include AI analysis | |
| path | No | Path to analyze | . | 
| reportType | No | Report type | comprehensive | 
Input Schema (JSON Schema)
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "includeAnalysis": {
      "default": true,
      "description": "Include AI analysis",
      "type": "boolean"
    },
    "path": {
      "default": ".",
      "description": "Path to analyze",
      "type": "string"
    },
    "reportType": {
      "default": "comprehensive",
      "description": "Report type",
      "type": "string"
    }
  },
  "required": [],
  "type": "object"
}