Business Loan Calculator

Finance REST API MCP

Return the monthly payment, total interest, origination fee, effective yearly rate (interest plus fees), a yearly summary, and a full monthly amortization schedule for a business loan. Rate is a yearly percentage; the term is in months.

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

Call it over REST

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

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/business-loan-calculator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "loan_amount": 100000,
    "interest_rate": 8,
    "loan_term_months": 60,
    "origination_fee_percent": 2
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/business-loan-calculator

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
loan_amount number yes Loan principal.
interest_rate number yes Yearly interest rate in percent (8 = 8%). Must be > 0.
loan_term_months integer yes Loan term in months (1-480).
origination_fee_percent number no Origination fee as a percent of the loan amount. Default: 0.
loan_type string (standard | sba | equipment | line_of_credit) no Label only (standard, sba, equipment, line_of_credit). Does not change the math. Default: standard.

Example arguments (verified)

{
  "loan_amount": 100000,
  "interest_rate": 8,
  "loan_term_months": 60,
  "origination_fee_percent": 2
}

Also an MCP tool

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

Connect once

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

More Finance tools