| name | bill-tracker |
| description | Access Bill Tracker financial data - upcoming bills, account balances, and affordability checks. |
| metadata | {"openclaw":{"requires":{"env":["BILL_TRACKER_URL","BILL_TRACKER_SESSION_TOKEN"]},"primaryEnv":"BILL_TRACKER_SESSION_TOKEN","emoji":"💰"}} |
Bill Tracker Skill
When the user asks about their bills, account balances, or whether they can afford something, use the bash tool to call the Bill Tracker API.
Required environment
Getting a session token
Bill Tracker uses magic-link auth (no passwords). Two steps:
- Request a verification code (sent to email):
curl -s -X POST -H "Content-Type: application/json" \
-d '{"email":"user@example.com"}' \
"${BILL_TRACKER_URL}/api/mcp/request-code"
- Exchange the code from your email for a session token:
curl -s -X POST -H "Content-Type: application/json" \
-d '{"code":"123456"}' \
"${BILL_TRACKER_URL}/api/mcp/token"