Finance
Calculate your car loan monthly payment factoring in vehicle price, down payment, trade-in value, sales tax, and registration fees. Shows amount financed, total interest, total cost, a descending balance curve, and a yearly amortization schedule.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/auto-loan-calculator' \
-H 'Content-Type: application/json' \
-d '{"vehiclePrice":35000,"downPayment":5000,"tradeInValue":8000,"salesTaxRate":7,"fees":500,"interestRate":5.5,"loanTerm":"60","decimalPlaces":2}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/auto-loan-calculator| Name | Type | Required | Description |
|---|---|---|---|
| vehiclePrice | number | Yes | — |
| downPayment | number | No | — |
| tradeInValue | number | No | — |
| salesTaxRate | number | No | — |
| fees | number | No | — |
| interestRate |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-auto-loan-calculator": {
"name": "auto-loan-calculator",
"description": "Calculate your car loan monthly payment factoring in vehicle price, down payment, trade-in value, sales tax, and registration fees. Shows amount financed, total interest, total cost, a descending balance curve, and a yearly amortization schedule.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=auto-loan-calculator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "auto-loan-calculator",
"arguments": {
"vehiclePrice": 35000,
"downPayment": 5000,
"tradeInValue": 8000,
"salesTaxRate": 7,
"fees": 500,
"interestRate": 5.5,
"loanTerm": "60",
"decimalPlaces": 2
}
}
}| number |
| Yes |
| — |
| loanTerm | select | No | — |
| decimalPlaces | number | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]