tosea_get_permissions_summary
Check account tier and feature access to verify permissions before running resource-intensive operations.
Instructions
Inspect current account tier and feature access before expensive runs.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools.ts:59-70 (handler)Handler registration and implementation for the 'tosea_get_permissions_summary' tool, which invokes client.getPermissionsSummary().
server.tool( "tosea_get_permissions_summary", "Inspect current account tier and feature access before expensive runs.", {}, async () => { try { return asToolResult(await client.getPermissionsSummary()); } catch (error) { throw wrapToolError(error); } } );