Finance
Generate a full mortgage amortization table, compare extra-payment scenarios, and visualize total interest savings
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/mortgage-amortization-calculator' \
-H 'Content-Type: application/json' \
-d '{"principal":300000,"annualInterestRate":6.5,"termYears":30,"extraMonthlyPayment":250,"lumpSumPayment":0,"lumpSumMonth":0}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/mortgage-amortization-calculator| Name | Type | Required | Description |
|---|---|---|---|
| principal | number | Yes | — |
| annualInterestRate | number | Yes | — |
| termYears | number | Yes | — |
| extraMonthlyPayment | number | No | — |
| lumpSumPayment | number | No | — |
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-mortgage-amortization-calculator": {
"name": "mortgage-amortization-calculator",
"description": "Generate a full mortgage amortization table, compare extra-payment scenarios, and visualize total interest savings",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=mortgage-amortization-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": "mortgage-amortization-calculator",
"arguments": {
"principal": 300000,
"annualInterestRate": 6.5,
"termYears": 30,
"extraMonthlyPayment": 250,
"lumpSumPayment": 0,
"lumpSumMonth": 0
}
}
}Questions or issues? Contact [email protected]
| lumpSumMonth |
| number |
| No |
| — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}