# Net Worth Calculator — REST API endpoint `net-worth-calculator`

Return net worth (total assets minus total liabilities), the debt-to-asset ratio in percent, and subtotals per category. Asset fields: checking, savings, money_market, cash_other, stocks, bonds, mutual_funds, crypto, retirement_401k, ira, pension, primary_home, other_real_estate, vehicles, personal_property. Liability fields: mortgage, home_equity, auto_loan, credit_cards, student_loans, personal_loans, medical_debt, other_debt.

- Category: finance
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/net-worth-calculator/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/net-worth-calculator/
- Same tool on the other surface: https://findutils.com/mcp/net-worth-calculator/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/net-worth-calculator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "assets": {
      "checking": 5000,
      "savings": 15000,
      "stocks": 30000,
      "retirement_401k": 50000,
      "primary_home": 300000
    },
    "liabilities": {
      "mortgage": 200000,
      "credit_cards": 2500
    }
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/net-worth-calculator
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `assets` | object | no | Object of asset field → amount. Fields: checking, savings, money_market, cash_other, stocks, bonds, mutual_funds, crypto, retirement_401k, ira, pension, primary_home, other_real_estate, vehicles, personal_property. Missing fields count as 0. |
| `liabilities` | object | no | Object of liability field → amount. Fields: mortgage, home_equity, auto_loan, credit_cards, student_loans, personal_loans, medical_debt, other_debt. Missing fields count as 0. |

Example arguments (verified):

```json
{
  "assets": {
    "checking": 5000,
    "savings": 15000,
    "stocks": 30000,
    "retirement_401k": 50000,
    "primary_home": 300000
  },
  "liabilities": {
    "mortgage": 200000,
    "credit_cards": 2500
  }
}
```

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

## Also an MCP tool

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Then ask the client to call `findutils:net_worth_calculator`. Full MCP reference: https://findutils.com/mcp/net-worth-calculator/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
