# Business Loan Calculator — REST API endpoint `business-loan-calculator`

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.

- Category: finance
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/business-loan-calculator/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/business-loan-calculator/
- Same tool on the other surface: https://findutils.com/mcp/business-loan-calculator/

## Call the endpoint (verified example)

```bash
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
curl https://api.findutils.com/api/tools/business-loan-calculator
```

## 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):

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

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

## Also an MCP tool

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Then ask the client to call `findutils:business_loan_calculator`. Full MCP reference: https://findutils.com/mcp/business-loan-calculator/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
