financial_calculator_lite
ActiveTool of Inferventis — Financial Data, News & Web MCP
Performs common financial calculations locally with no external API dependency. Supports compound interest, loan repayment, return on investment (ROI), present value, future value, and break-even analysis. Returns a single numeric result for the requested calculation type. This is a lightweight variant of financial_calculator — it returns only the result number rather than a full structured breakdown (monthly payment, total interest, annualised ROI, etc.). Use financial_calculator_lite when only the headline figure is needed. Prefer financial_calculator when the agent needs a full breakdown, multiple sub-values, or labelled output fields for compound interest earned, total repayable, or annualised returns. Neither this tool nor financial_calculator fetches live market data — for live prices use stock_quote, crypto_price, or currency_convert.
Parameters schema
{
"type": "object",
"required": [
"calculator_type"
],
"properties": {
"rate": {
"type": "number",
"description": "Annual interest or discount rate as a decimal (e.g. 0.05 for 5%). Required for compound_interest, loan_repayment, present_value, and future_value."
},
"periods": {
"type": "number",
"description": "Number of compounding periods (years) or loan term in months depending on calculator_type. Required for compound_interest, loan_repayment, future_value, and present_value."
},
"principal": {
"type": "number",
"description": "Starting amount or loan principal in currency units. Required for compound_interest, loan_repayment, present_value, and future_value."
},
"final_value": {
"type": "number",
"description": "Final investment value. Required for roi calculations."
},
"initial_value": {
"type": "number",
"description": "Initial investment amount. Required for roi calculations."
},
"calculator_type": {
"type": "string",
"description": "Type of calculation to perform. Accepted values: 'compound_interest', 'loan_repayment', 'roi', 'present_value', 'future_value', 'break_even'."
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
Inferventis — Financial Data, News & Web MCP
https://github.com/Bankee-ai/inferventis-tools
1/7 registries