mcp_calculate_growth_rates
Calculate annualized and period-over-period growth rates from a time series, such as revenue or earnings, to analyze financial performance trends over time.
Instructions
Calculates growth rates for a time series (e.g., revenue, earnings).
Args:
series: List of numbers ordered oldest to newest.
Returns:
Dict with annualized growth rate and list of period-over-period growth rates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
series | Yes |
Input Schema (JSON Schema)
{
"properties": {
"series": {
"items": {},
"title": "Series",
"type": "array"
}
},
"required": [
"series"
],
"title": "mcp_calculate_growth_ratesArguments",
"type": "object"
}