Docs/MCP Tools/get_account_info
MCP Toolget_account_infoScope: account:read

Get Account Info

Inspect authenticated user profile details, active subscription tier, and monthly quota usage metrics.

Description

Get Account Info provides identity and subscription tier context for the connected user. It reveals the user's account identifier, display name, email, subscription tier ('free', 'go', 'pro', 'vip'), monthly asset download quota limit, quota consumed in the current billing cycle, and account creation timestamp. This enables AI assistants to provide personalized recommendations, notify users if they are approaching their monthly download limits, or inform them of perks unlocked under their active tier.

AI Agent Guidance & Best Practices

Call get_account_info when initializing a session to check tier status (Free, Go, Pro, VIP) and tailor asset recommendations to items covered under the user's plan.

Input Arguments

0 parameters
No parameters required for this operation.

Request Example

{
  "jsonrpc": "2.0",
  "id": "call_10",
  "method": "tools/call",
  "params": {
    "name": "get_account_info",
    "arguments": {}
  }
}

Response Schema Example

application/json
{
  "userId": "usr_58291",
  "name": "Alex Vance",
  "email": "alex@vancestudios.com",
  "tier": "pro",
  "monthlyQuotaLimit": "unlimited",
  "monthlyQuotaUsed": 42,
  "createdAt": "2025-11-20T08:00:00Z"
}