MoneyMate / demo_inputs.json
TheSilentOne's picture
Uploading necessary files to the Space (#1)
2fa4faa verified
raw
history blame
8.63 kB
{
"mcp_server_info": {
"name": "MoneyMate",
"version": "1.0.0",
"description": "AI-powered financial assistant for young Indian professionals",
"server_url": "https://kaustubhme0--moneymate-backend-fastapi-app.modal.run",
"gradio_app_url": "https://huggingface.co/spaces/[YOUR_USERNAME]/moneymate",
"mcp_compatibility": true
},
"sample_queries": [
{
"id": "salary_breakdown",
"category": "Salary Planning",
"user_input": "I earn ₹75,000 per month. How should I allocate my salary?",
"context": {
"salary": 75000,
"expenses": {
"rent": 25000,
"food": 8000,
"transport": 5000,
"utilities": 3000,
"entertainment": 7000
},
"total_expenses": 48000,
"remaining_salary": 27000,
"savings_goal": "Emergency fund and investments"
},
"expected_response_type": "financial_advice",
"description": "Basic salary allocation using 50/30/20 rule"
},
{
"id": "first_job_planning",
"category": "Career Starter",
"user_input": "I just got my first job at ₹45,000. What should I do with my money?",
"context": {
"salary": 45000,
"expenses": {
"rent": 15000,
"food": 6000,
"transport": 3000,
"utilities": 2000,
"personal": 3000
},
"total_expenses": 29000,
"remaining_salary": 16000,
"savings_goal": "Build foundation for financial future"
},
"expected_response_type": "financial_advice",
"description": "First job financial planning guidance"
},
{
"id": "investment_planning",
"category": "Investment Advice",
"user_input": "I have ₹20,000 left after expenses. How should I invest this money?",
"context": {
"salary": 60000,
"expenses": {
"rent": 20000,
"food": 7000,
"transport": 4000,
"utilities": 2500,
"entertainment": 6500
},
"total_expenses": 40000,
"remaining_salary": 20000,
"savings_goal": "Long-term wealth building"
},
"expected_response_type": "financial_advice",
"description": "Investment strategy for surplus income"
},
{
"id": "emergency_fund",
"category": "Emergency Planning",
"user_input": "How much should I keep as emergency fund and where should I keep it?",
"context": {
"salary": 80000,
"expenses": {
"rent": 30000,
"food": 10000,
"transport": 6000,
"utilities": 4000,
"entertainment": 8000,
"miscellaneous": 5000
},
"total_expenses": 63000,
"remaining_salary": 17000,
"savings_goal": "Build emergency fund"
},
"expected_response_type": "financial_advice",
"description": "Emergency fund planning and placement"
},
{
"id": "goal_based_saving",
"category": "Goal Planning",
"user_input": "I want to buy a car worth ₹8 lakhs in 2 years. How much should I save monthly?",
"context": {
"salary": 90000,
"expenses": {
"rent": 25000,
"food": 12000,
"transport": 8000,
"utilities": 4000,
"entertainment": 10000,
"miscellaneous": 6000
},
"total_expenses": 65000,
"remaining_salary": 25000,
"savings_goal": "Car purchase in 2 years - ₹8 lakhs"
},
"expected_response_type": "financial_advice",
"description": "Goal-based savings calculation"
},
{
"id": "tax_planning",
"category": "Tax Optimization",
"user_input": "I need to save tax under Section 80C. What are my best options?",
"context": {
"salary": 120000,
"expenses": {
"rent": 35000,
"food": 15000,
"transport": 8000,
"utilities": 5000,
"entertainment": 12000,
"miscellaneous": 8000
},
"total_expenses": 83000,
"remaining_salary": 37000,
"savings_goal": "Tax saving and wealth building"
},
"expected_response_type": "financial_advice",
"description": "Tax saving strategies under Section 80C"
},
{
"id": "expense_optimization",
"category": "Expense Management",
"user_input": "My expenses are too high. How can I reduce them without affecting my lifestyle?",
"context": {
"salary": 70000,
"expenses": {
"rent": 28000,
"food": 12000,
"transport": 8000,
"utilities": 4000,
"entertainment": 15000,
"shopping": 8000,
"miscellaneous": 5000
},
"total_expenses": 80000,
"remaining_salary": -10000,
"savings_goal": "Reduce expenses and start saving"
},
"expected_response_type": "financial_advice",
"description": "Expense optimization without lifestyle compromise"
},
{
"id": "retirement_planning",
"category": "Long-term Planning",
"user_input": "I'm 25 years old. When should I start planning for retirement?",
"context": {
"salary": 65000,
"expenses": {
"rent": 22000,
"food": 8000,
"transport": 5000,
"utilities": 3000,
"entertainment": 8000,
"miscellaneous": 4000
},
"total_expenses": 50000,
"remaining_salary": 15000,
"savings_goal": "Early retirement planning"
},
"expected_response_type": "financial_advice",
"description": "Early career retirement planning"
}
],
"mcp_integration_examples": [
{
"client": "Cursor IDE",
"query": "Help me plan my ₹80,000 salary allocation",
"mcp_request": {
"method": "POST",
"endpoint": "/financial_advice",
"payload": {
"user_input": "Help me plan my ₹80,000 salary allocation",
"context": {
"salary": 80000,
"expenses": {},
"savings_goal": "General financial planning"
}
}
}
},
{
"client": "Claude Desktop",
"query": "Calculate SIP returns for ₹10,000 monthly investment",
"mcp_request": {
"method": "POST",
"endpoint": "/calculate_returns",
"payload": {
"monthly_investment": 10000,
"annual_return_rate": 12,
"years": 10
}
}
}
],
"gradio_interface_examples": [
{
"salary_input": 75000,
"expenses_input": "rent 25000, food 8000, transport 5000, utilities 3000, entertainment 7000",
"question_input": "How should I allocate my remaining ₹27,000?",
"expected_output": "Markdown formatted advice with pie chart showing allocation"
},
{
"salary_input": 45000,
"expenses_input": "rent 15000, food 6000, transport 3000, utilities 2000, personal 3000",
"question_input": "What's the best way to start investing?",
"expected_output": "Beginner-friendly investment advice with risk assessment"
}
],
"testing_scenarios": [
{
"name": "High Expenses",
"salary": 50000,
"expenses": "rent 30000, food 10000, transport 5000, entertainment 8000",
"question": "My expenses exceed my salary. What should I do?",
"expected_behavior": "Expense optimization advice and practical solutions"
},
{
"name": "High Earner",
"salary": 200000,
"expenses": "rent 40000, food 15000, transport 10000, utilities 5000, entertainment 20000",
"question": "How should I invest my surplus income?",
"expected_behavior": "Advanced investment strategies and tax planning"
},
{
"name": "Conservative Investor",
"salary": 60000,
"expenses": "rent 20000, food 8000, transport 4000, utilities 3000, entertainment 5000",
"question": "I'm afraid of stock market risks. What are safe investment options?",
"expected_behavior": "Conservative investment options with risk explanation"
}
]
}