This site is not yet public. Enter the preview password to continue.
50+ tools for real estate analysis, market data, economic indicators, and investment principles. Works with Claude Desktop, REST API, or Python.
Should I buy a $800k home or keep renting at $3k/month?
I'll analyze this for you using the rent vs buy calculator...
📊 Running: analyze_rent_vs_buy
Based on your inputs over a 7-year horizon:
Verdict: Renting wins by $47,000
Key factors:
• Break-even requires 5.2% annual appreciation
• Current assumptions show 3% appreciation
• Most sensitive to: home appreciation rate
From quick calculations to comprehensive reports
ROE & IRR analysis, hold/sell recommendations, cash flow projections, and interactive reports.
Real-time stock quotes, historical prices, financials, and crypto data via Yahoo Finance.
Access 38+ FRED indicators across inflation, employment, housing, and GDP categories.
Comprehensive comparison with sensitivity analysis showing what assumptions matter most.
270 principles from Warren Buffett, Charlie Munger, Ray Dalio, and 6 other legendary investors.
SEC filings, Treasury rates, Census demographics, and BLS employment data.
Use with Claude Desktop, REST API, or Python
{
"mcpServers": {
"savvy": {
"command": "npx",
"args": ["-y", "@anthropic-ai/mcp-proxy", "https://api.savvy.finance/sse"],
"env": {
"HEADERS": "{\"X-API-Key\": \"your-api-key\"}"
}
}
}
}
# Get a stock quote
curl -X POST https://api.savvy.finance/api/tools/get_stock_quote \
-H "X-API-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{"ticker": "AAPL"}'
# Analyze rent vs buy
curl -X POST https://api.savvy.finance/api/tools/analyze_rent_vs_buy \
-H "X-API-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{"monthly_rent": 3000, "home_price": 800000}'
import httpx
client = httpx.Client(
base_url="https://api.savvy.finance",
headers={"X-API-Key": "your-api-key"}
)
# Get stock quote
response = client.post("/api/tools/get_stock_quote", json={"ticker": "AAPL"})
print(response.json())
# Analyze rent vs buy
response = client.post("/api/tools/analyze_rent_vs_buy", json={
"monthly_rent": 3000,
"home_price": 800000,
"time_horizon_years": 7
})
print(response.json())
Start free, upgrade when you need more
Get your free API key in seconds. No credit card required.
Create Free Account