mcp__gemini__analyze_intelligence
Analyze code for performance prediction, business impact, and trends. Generate quality metrics and assess project insights using comprehensive AI-powered code intelligence.
Instructions
Deep code analysis with performance prediction, business impact assessment, and trend analysis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysis_type | No | Analysis type | comprehensive |
generate_metrics | No | Generate quality metrics | |
include_business_impact | No | Include business impact analysis | |
performance_prediction | No | Enable performance prediction | |
target | Yes | Code/project to analyze |
Input Schema (JSON Schema)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"analysis_type": {
"default": "comprehensive",
"description": "Analysis type",
"type": "string"
},
"generate_metrics": {
"default": true,
"description": "Generate quality metrics",
"type": "boolean"
},
"include_business_impact": {
"default": true,
"description": "Include business impact analysis",
"type": "boolean"
},
"performance_prediction": {
"default": true,
"description": "Enable performance prediction",
"type": "boolean"
},
"target": {
"description": "Code/project to analyze",
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}