{"name":"com.gumballtools/amortize","slug":"gumballtools-amortize","title":"Amortization Schedule","description":"Row-by-row loan amortization schedules: monthly or daily accrual, extra principal, PMI, biweekly.","url":"https://mcp.market/server/gumballtools-amortize","rating":null,"grade":"C","score":67,"certified":false,"status":"active","category":"other","tags":[],"presence":{"score":8,"stars":null,"forks":null,"downloads_week":null,"last_push_at":null,"license":null},"uptime":{"percent":100,"checks":6,"ok":6,"last_checked_at":"2026-09-20T20:25:35.819Z","last_ok_at":"2026-09-20T20:25:35.819Z","latency_ms":896},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/bwalvoord/gumball","website":"https://amortize.gumballtools.com","version":"0.1.0","remotes":[{"type":"streamable-http","url":"https://amortize.gumballtools.com/api/mcp"}],"packages":[],"tools":[{"name":"amortize","description":"Builds the full row-by-row amortization schedule for a loan — interest, principal, PMI, and running balance for every payment — instead of just the monthly payment amount.\n\nUse this whenever a row-by-row schedule matters: \"what is my balance after payment 47\", \"what does an extra $200/month do to my payoff date\", \"when does PMI drop off\", or \"give me the whole amortization table\". Do not do this arithmetic by hand or in your head. Two things go wrong reliably when a model tries:\n\n1. THE LAST ROW. The textbook payment formula only amortizes to exactly zero in infinite precision. Rounded to cents and carried over up to a few hundred rows, a hand-rolled schedule drifts and ends with a balance of a few cents to a few dollars instead of zero — exactly the row a person checks against their real statement. This tool recomputes the final row as \"remaining balance + that row's interest\" so it always ends at zero, and reports the delta.\n2. COMPOUNDING CONVENTION. Fixed mortgages compound monthly (rate/12). HELOCs, most auto loans, and most private student loans accrue interest DAILY on the actual number of days between payments, which is a genuinely different schedule, not a rounding variant. Guessing the wrong one silently produces a plausible but wrong table.\n\nInput: `principal`, `annualRatePercent` (e.g. 6.5), `termMonths` (integer), and `compounding` (\"monthly\" or \"daily\") are required. For `compounding: \"daily\"`, supply EITHER `startDate` (YYYY-MM-DD — the tool derives real day counts and leap years from the calendar itself) OR `dayCountBasis` (\"30/360\" | \"actual/365\" | \"actual/actual\") for a hypothetical loan with no dates — never both are needed, and supplying neither is refused rather than guessed. Optional: `paymentFrequency` (\"monthly\" default | \"biweekly\", which requires daily compounding — pass `paymentOverride` if the actual billed payment differs from the textbook one, e.g. a HELOC's quoted minimum; `extraPrincipal` as `{type:\"oneOff\",amount,atPaymentNumber}` or `{type:\"recurring\",amount,startingPaymentNumber?}`; `pmi` as `{monthlyAmount,originalValue,cancelAtPercent?}` (78 or 80, default 78) to model PMI dropping off.\n\nRefuses rather than guesses: a payment that does not exceed the first period's interest (negative amortization) is a named error with the minimum amortizing payment attached, not a schedule that never ends. An unparseable or impossible date is refused, not reinterpreted.\n\nReturns the full schedule, total interest and PMI paid, the payoff date or period, the final payment amount and how it differs from the standard one, and — when extra principal was given — the same schedule without it, so the periods and interest saved are explicit. A `disclaimer` field travels with every response: this is a planning estimate, not a lender payoff quote, and PMI cancellation here uses your actual balance, which a servicer is legally permitted to compute off the original schedule instead. Relay the warnings, not just the numbers.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"principal":{"type":"number","description":"The loan amount, > 0."},"annualRatePercent":{"type":"number","description":"The annual interest rate as a percent, e.g. 6.5 for 6.5%."},"termMonths":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991,"description":"The original term in whole months, e.g. 360 for 30 years."},"compounding":{"type":"string","enum":["monthly","daily"],"description":"\"monthly\": rate/12 per period, the fixed-mortgage norm. \"daily\": actual per-diem accrual, the HELOC/auto-loan/student-loan convention — requires startDate or dayCountBasis."},"dayCountBasis":{"description":"Required for daily compounding ONLY when there is no startDate (a hypothetical loan).","type":"string","enum":["30/360","actual/365","actual/actual"]},"startDate":{"description":"YYYY-MM-DD. For daily compounding, supplying this lets the tool read real day counts and leap years off the calendar.","type":"string"},"paymentFrequency":{"description":"\"biweekly\" pays half the monthly payment every 14 days and requires compounding \"daily\".","type":"string","enum":["monthly","biweekly"]},"paymentOverride":{"description":"The actual per-period payment, if different from the textbook one — e.g. a HELOC minimum payment.","type":"number"},"extraPrincipal":{"description":"A one-off extra payment at a given payment number, or a recurring extra payment from a given payment number onward.","anyOf":[{"type":"object","properties":{"type":{"type":"string","const":"oneOff"},"amount":{"type":"number"},"atPaymentNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991}},"required":["type","amount","atPaymentNumber"]},{"type":"object","properties":{"type":{"type":"string","const":"recurring"},"amount":{"type":"number"},"startingPaymentNumber":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991}},"required":["type","amount"]}]},"pmi":{"description":"Models PMI dropping off at 78% (automatic, default) or 80% (requestable) of originalValue.","type":"object","properties":{"monthlyAmount":{"type":"number"},"originalValue":{"type":"number"},"cancelAtPercent":{"anyOf":[{"type":"number","const":78},{"type":"number","const":80}]}},"required":["monthlyAmount","originalValue"]}},"required":["principal","annualRatePercent","termMonths","compounding"],"$schema":"https://json-schema.org/draft/2020-12/schema"}}],"scan":{"score":67,"grade":"C","scanned_at":"2026-09-20T11:36:57.226Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-20T11:36:57.140Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 1240ms"]},"poisoning":{"score":13,"max":15,"notes":["1 tool descriptions checked"]},"auth":{"score":10,"max":15,"notes":["open endpoint, read-only tools"]},"maintenance":{"score":3,"max":15,"notes":["repository not readable: repo not found"]},"identity":{"score":4,"max":10,"notes":["verified namespace with website, no repo"]}},"findings":[{"id":"poison.long-description","severity":"low","component":"poisoning","title":"Unusually long tool description (over 2,000 characters)","evidence":"tool amortize: …Builds the full row-by-row amortization schedule for a loan — interest, principal, PMI, and running balance for every payment — instead of just the monthly payment amount. Use this whenever a row-by-row schedule matters: \"what is my balance after payment 47\", \"what does an extra $200/month do to my payoff date\", \"when does PMI drop off\", or \"give me the whole amortization table\". Do not do this arithmetic by hand or in your head. Two things go wrong reliably when a model tries: 1. THE LAST ROW. The textbook payment formula only amortizes to exactly zero in infinite precision. Rounded to cents and carried over up to a few hundred rows, a hand-rolled schedule drifts and ends with a balance of a few cents to a few dollars instead of zero — exactly the row a person checks against their real statement. This tool recomputes the final row as \"remaining balance + that row's interest\" so it always ends at zero, and reports the delta. 2. COMPOUNDING CONVENTION. Fixed mortgages compound monthly (rate/12). HELOCs, most auto loans, and most private student loans accrue interest DAILY on the actual number of days between payments, which is a genuinely different schedule, not a rounding variant. Guessing the wrong one silently produces a plausible but wrong table. Input: `principal`, `annualRatePercent` (e.g. 6.5), `termMonths` (integer), and `compounding` (\"monthly\" or \"daily\") are required. For `compounding: \"daily\"`, supply EITHER `startDate` (YYYY-MM-DD — the tool derives real day counts and leap years from the calendar itself) OR `dayCountBasis` (\"30/360\" | \"actual/365\" | \"actual/actual\") for a hypothetical loan with no dates — never both are needed, and supplying neither is refused rather than guessed. Optional: `paymentFrequency` (\"monthly\" default | \"biweekly\", which requires daily compounding — pass `paymentOverride` if the actual billed payment differs from the textbook one, e.g. a HELOC's quoted minimum; `extraPrincipal` as `{type:\"oneOff\",amount,atPaymentNumber}` or `{type:\"recurring\",amount,startingPaymentNumber?}`; `pmi` as `{monthlyAmount,originalValue,cancelAtPercent?}` (78 or 80, default 78) to model PMI dropping off. Refuses rather than guesses: a payment that does not exceed the first period's interest (negative amortization) is a named error with the minimum amortizing payment attached, not a schedule that never ends. An unparseable or impossible date is refused, not reinterpreted. Returns the full schedule, total interest and PMI paid, the payoff date or period, the final payment amount and how it differs from the standard one, and — when extra principal was given — the same schedule without it, so the periods and interest saved are explicit. A `disclaimer` field travels with every response: this is a planning estimate, not a lender payoff quote, and PMI cancellation here uses your actual balance, which a servicer is legally permitted to compute off the original schedule instead. Relay the warnings, not just the numbers.…"}],"inputs":{"probes":[{"url":"https://amortize.gumballtools.com/api/mcp","reachable":true,"authRequired":false,"latencyMs":1240,"serverInfo":{"name":"amortize","version":"0.1.0"}}],"packages":[],"repo":{"found":false,"owner":"bwalvoord","repo":"gumball","error":"repo not found"},"icon":{"url":null,"source":"none"},"presence":{"stars":null,"forks":null,"downloadsWeek":null,"license":null,"lastPushAt":null,"score":8}}}},"grade_history":[],"reviews":[]}