Cash Advance Analyzer
analyze_cash_advanceCalculation, not advice. Verify with a professional before acting. Deep analysis of a single card's cash advance showing payment allocation, CA interest cost, CA payoff months, and whether the CA is growing. 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: purchase_balance: decimal >= 0 (REQUIRED) purchase_apr_pct: decimal 0-100 as percentage (REQUIRED) cash_advance_balance: decimal > 0 (REQUIRED) cash_advance_apr_pct: decimal > 0, <= 100 (REQUIRED). A cash advance always accrues interest immediately, so 0 is not a valid rate. total_monthly_payment: decimal > 0, at most 2 decimal places (REQUIRED) minimum_payment: decimal >= 0, at most 2 decimal places (optional, default auto-calculate). When supplied, this DOES bind: the per-month mandatory payment is min(max(the issuer minimum recomputed from the balance, minimum_payment), the remaining balance, total_monthly_payment). This differs from calculate_cc_payoff's default dynamic path, where the identically-named minimum_payment is parsed and validated but never applied unless fixed_payments = true: the two tools do not share behavior for this parameter, only its name. cash_advance_fee_pct: decimal >= 0 (optional, default 0). e.g. 5 for 5% cash_advance_fee_min: decimal >= 0 (optional, default 0). e.g. 10 for $10 chart_title: string (optional) override for the chart title. Must not contain em-dashes or en-dashes. Max 120 characters. |