AI Tools
Generate personalized wealth freedom financial plans based on your current financial situation and goals
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/ai-wealth-freedom-planner' \
-H 'Content-Type: application/json' \
-d '{"currentAge":0,"retirementAge":0,"currentIncome":0,"targetIncome":0,"monthlyExpenses":0,"currentSavings":0,"investmentExperience":"beginner","riskTolerance":"moderate","financialGoals":"Describe your main financial goals...","planningTimeframe":"medium","language":"en"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/ai-wealth-freedom-planner| Name | Type | Required | Description |
|---|---|---|---|
| currentAge | number | Yes | Your current age, used to calculate the financial planning time span |
| retirementAge | number | Yes | Your desired age to achieve financial freedom |
| currentIncome | number | Yes | Your current annual income |
| targetIncome | number | Yes | Your target annual income |
| monthlyExpenses | number | Yes |
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-ai-wealth-freedom-planner": {
"name": "ai-wealth-freedom-planner",
"description": "Generate personalized wealth freedom financial plans based on your current financial situation and goals",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=ai-wealth-freedom-planner",
"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": "ai-wealth-freedom-planner",
"arguments": {
"currentAge": 0,
"retirementAge": 0,
"currentIncome": 0,
"targetIncome": 0,
"monthlyExpenses": 0,
"currentSavings": 0,
"investmentExperience": "beginner",
"riskTolerance": "moderate",
"financialGoals": "Describe your main financial goals...",
"planningTimeframe": "medium",
"language": "en"
}
}
}| Your monthly expenses |
| currentSavings | number | Yes | Your current total savings |
| investmentExperience | select | Yes | — |
| riskTolerance | select | Yes | — |
| financialGoals | textarea | No | For example: buying a house, child education, startup, travel, etc. |
| planningTimeframe | select | Yes | — |
| language | select | No | — |
Stream result
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}Questions or issues? Contact [email protected]