get_account
Retrieve DigiSign account information including credits, subscription plan, and usage details to monitor digital signature service status.
Instructions
Get DigiSign account info — credits, plan, usage.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/api.js:205-207 (handler)The underlying API call implementation for fetching account information.
export function getAccount(creds) { return apiCall('GET', '/api/account', creds); } - src/index.js:143-155 (registration)The MCP tool registration and handler wrapper for 'get_account'.
server.tool( 'get_account', 'Get DigiSign account info — credits, plan, usage.', {}, async () => { try { const data = await api.getAccount(creds); return result(data); } catch (err) { return errorResult(err); } } );