Debt payoff planner: snowball vs avalanche — months to debt-free & total interest. Remote MCP.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"debt-payoff": {
"url": "https://debtfree.rugscore.workers.dev/mcp",
"type": "streamable-http"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Debt payoff planner: snowball vs avalanche — months to debt-free & total interest. Remote MCP.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
MCP Security Weekly
Get CVE alerts and security updates for io.github.comil27/debt-payoff-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A hosted Model Context Protocol server that lets any AI assistant compute a real debt-payoff plan — comparing the snowball (smallest balance first) and avalanche (highest APR first) strategies — with no API key and nothing to install.
Works in Claude Code, Claude Desktop, Cursor, and any MCP-capable agent.
debt_payoff_plan — takes one or more debts and returns, for both strategies:
budget_50_30_20 — splits a monthly take-home income into a 50/30/20 budget (needs / wants /
savings & debt), with optional custom percentages. Returns dollar targets per bucket.
savings_goal — given a target amount, monthly contribution, optional current savings and APY,
returns months/years to reach the goal and total contributed.
Claude Code
claude mcp add --transport http debt-payoff https://debtfree.rugscore.workers.dev/mcp
Claude Desktop / Cursor / generic MCP client:
{
"mcpServers": {
"debt-payoff": {
"type": "streamable-http",
"url": "https://debtfree.rugscore.workers.dev/mcp"
}
}
}
Then ask: "I have a $6,000 card at 24% (min $150) and a $12,000 car loan at 7% (min $250), and I can put $200 extra toward debt each month. What's the fastest way to pay it off?"
// debt_payoff_plan
// { "debts": [ {"name":"Visa","balance":6000,"apr":24,"min":150} ], "extra": 100 }
{
"snowball": { "monthsToDebtFree": 29, "totalInterest": 1480.69, "payoffOrder": ["Visa"] },
"avalanche": { "monthsToDebtFree": 29, "totalInterest": 1480.69, "payoffOrder": ["Visa"] },
"recommended": "avalanche",
"avalancheSavesInterest": 0
}
Single-debt shortcut: pass balance, apr, min (and optional extra) instead of debts.
The free tool plans the payoff. The complete Debt-Free Workbook (.xlsx: budget, sinking
funds, net-worth tracker, 52-week challenge, plus the live payoff engine) is available here:
https://debtfree.rugscore.workers.dev
A free in-browser calculator and worked examples live there too.
MIT