DeepSyte

account_balance

Check the authenticated user's current monthly DeepSyte usage, remaining balance, reset date, plan, and quota policy.

Parameters

This MCP tool does not require parameters. It uses the authenticated DeepSyte account from the current MCP or CLI session.

Example

Check my DeepSyte account balance before running this audit

Response

Returns a human-readable balance summary plus JSON with:

FieldDescription
planCurrent account plan
isAdminWhether the account is configured as an admin
unitUsage unit, currently actions
window.startedAtStart of the current monthly usage window
window.resetAtReset time for the monthly usage window
usage.usedCount used in the current month
usage.limitMonthly limit, or null for unlimited accounts
usage.remainingRemaining monthly balance, or null for unlimited accounts
usage.unlimitedWhether quota is unlimited
usage.policyApplied policy, such as plan-limit, legacy-free-grandfathered, or admin-unlimited

REST and CLI Equivalents

curl https://api.deepsyte.com/v1/account/balance \
  -H "Authorization: Bearer sk_live_..."

deepsyte balance
deepsyte balance --json

GET /v1/account/usage is an alias for the REST endpoint.

Notes

  • Admin accounts listed in ADMIN_EMAILS return usage.unlimited: true, usage.limit: null, usage.remaining: null, and usage.policy: "admin-unlimited".
  • The endpoint and MCP tool still report usage.used for admin accounts so owners can see activity without being rate-limited.

On this page