Loan Calculate

Finance REST API MCP

Amortise a fixed-rate loan and show the impact of an optional monthly extra payment on payoff time and total interest.

This page documents the HTTP endpoint POST /api/tools/loan-calculate/execute. See the MCP reference →

Call it over REST

POST https://api.findutils.com/api/tools/loan-calculate/execute · no API keys · 60 requests/min per IP

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/loan-calculate/execute \
  -H "Content-Type: application/json" \
  -d '{
    "principal": 10000,
    "annual_rate": 0.05,
    "years": 5
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/loan-calculate

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
principal number yes Loan balance.
annual_rate number yes Annual interest rate as a decimal.
years number yes Contract length in years.
extra_payment number no Optional monthly extra paid on top of the standard payment.

Example arguments (verified)

{
  "principal": 10000,
  "annual_rate": 0.05,
  "years": 5
}

Also an MCP tool

Claude, Cursor, and any MCP client can call this tool as findutils:loan_calculate after one connect command.

Connect once

claude mcp add findutils --transport http https://mcp.findutils.com/
Open the MCP reference for Loan Calculate →

More Finance tools