Bill Tracker
/install bill-tracker
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
BILL_TRACKER_URL- Base URL (e.g. https://your-server.com or http://localhost:1337)BILL_TRACKER_SESSION_TOKEN- Session token for authentication (obtained once via POST /api/mcp/token)
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":"[email protected]"}' \
"${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"
Store the returned sessionToken in BILL_TRACKER_SESSION_TOKEN. Tokens are long-lived; no need to re-verify on every request. (Codes expire in 10 minutes.)
Endpoints
1. Upcoming transactions (bills and income due soon)
POST ${BILL_TRACKER_URL}/api/mcp/upcoming-transactions
X-Parse-Session-Token: ${BILL_TRACKER_SESSION_TOKEN}
Body: { "days": 3 }
Default days is 3. Increase for a longer window (e.g. days=7).
2. Account balances
POST ${BILL_TRACKER_URL}/api/mcp/account-balances
X-Parse-Session-Token: ${BILL_TRACKER_SESSION_TOKEN}
Returns each account with name, type, balance, and a totalBalance (cash minus debt).
3. Can I afford X?
POST ${BILL_TRACKER_URL}/api/mcp/can-afford
X-Parse-Session-Token: ${BILL_TRACKER_SESSION_TOKEN}
Body: { "amount": 500, "horizonDays": 90 }
Replace 500 with the amount in dollars. horizonDays defaults to 90.
Returns either canAfford: true with the date they can afford it, or canAfford: false with a message.
How to call
Use curl with POST. Pass X-Parse-Session-Token (or Authorization: Bearer $BILL_TRACKER_SESSION_TOKEN) for authentication. The token identifies the user—no email or password needed. Parse the JSON response and summarize clearly for the user.
Example (upcoming transactions):
curl -s -X POST -H "X-Parse-Session-Token: $BILL_TRACKER_SESSION_TOKEN" -H "Content-Type: application/json" \
-d '{"days": 3}' \
"${BILL_TRACKER_URL}/api/mcp/upcoming-transactions"
Example (account balances):
curl -s -X POST -H "X-Parse-Session-Token: $BILL_TRACKER_SESSION_TOKEN" -H "Content-Type: application/json" \
-d '{}' \
"${BILL_TRACKER_URL}/api/mcp/account-balances"
Example (can afford):
curl -s -X POST -H "X-Parse-Session-Token: $BILL_TRACKER_SESSION_TOKEN" -H "Content-Type: application/json" \
-d '{"amount": 500}' \
"${BILL_TRACKER_URL}/api/mcp/can-afford"
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install bill-tracker - 安装完成后,直接呼叫该 Skill 的名称或使用
/bill-tracker触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Bill Tracker 是什么?
Retrieve upcoming bills, account balances, and assess if you can afford a specified amount within a set time frame. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 685 次。
如何安装 Bill Tracker?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install bill-tracker」即可一键安装,无需额外配置。
Bill Tracker 是免费的吗?
是的,Bill Tracker 完全免费(开源免费),可自由下载、安装和使用。
Bill Tracker 支持哪些平台?
Bill Tracker 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Bill Tracker?
由 danielsimons1(@danielsimons1)开发并维护,当前版本 v1.0.0。