Compound Interest Calculator
compound_interestCalculation, not advice. Verify with a professional before acting. Standard compound interest calculator. Returns future value, total contributions, interest earned, effective annual rate, and milestones. The response includes chart_hints with rendering directives any client can use. The senaro-charts MCP server renders them locally over stdio only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| toolArguments | Yes | JSON object with these parameters: principal: decimal >= 0 (REQUIRED) annual_rate_pct: decimal 0-100 as percentage, e.g. 7 not 0.07 (REQUIRED) years: int >= 1 (REQUIRED) monthly_contribution: decimal >= 0 (optional, default 0) compounds_per_year: int > 0 (optional, default 12) inflation_rate_pct: decimal >= 0 (optional, default 0 = NO real-value overlay; >0 = explicit percentage e.g. 3.5; -1 = deprecated suppress, same as 0) apply_default_inflation: bool (optional, default false; when true and inflation_rate_pct=0, auto-selects inflation via MacroeconomicDefaults.ForHorizon; ignored when inflation_rate_pct>0 or rate_convention='real') rate_convention: 'nominal'|'real' (optional, default 'nominal'; 'real' unconditionally suppresses the inflation overlay; use when annual_rate_pct is already inflation-adjusted) chart_title: string (optional) override for the chart title. Must not contain em-dashes or en-dashes. Max 120 characters. |