mcp__gemini__financial_impact
Analyze ROI and quantify business impact of technical decisions by evaluating cost-benefit scenarios, implementation timelines, team size, and risk tolerance levels.
Instructions
ROI analysis and cost-benefit calculations for technical decisions with business impact quantification
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | Business context and constraints | |
decision | Yes | Technical decision to analyze | |
risk_tolerance | No | Risk tolerance level | medium |
team_size | No | Team size for implementation | |
timeline | No | Implementation timeline | 6 months |
Input Schema (JSON Schema)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"context": {
"description": "Business context and constraints",
"type": "string"
},
"decision": {
"description": "Technical decision to analyze",
"type": "string"
},
"risk_tolerance": {
"default": "medium",
"description": "Risk tolerance level",
"type": "string"
},
"team_size": {
"default": 5,
"description": "Team size for implementation",
"type": "number"
},
"timeline": {
"default": "6 months",
"description": "Implementation timeline",
"type": "string"
}
},
"required": [
"decision"
],
"type": "object"
}