{ "tools": [ { "id": "list_users", "category": "users", "label": "List Users", "description": "Every Stoat account, with its email and whether it is disabled.", "icon": "📋", "fields": [] }, { "id": "delete_user", "category": "users", "label": "Disable User Account", "description": "Block sign-in without deleting the account or its messages. Reversible.", "icon": "🚫", "destructive": true, "confirm": "The user will not be able to sign in again until re-enabled.", "fields": [ { "name": "username", "label": "Username or email", "type": "text", "required": true } ] }, { "id": "enable_user", "category": "users", "label": "Enable User Account", "description": "Undo a disable and let the account sign in again.", "icon": "✅", "fields": [ { "name": "username", "label": "Username or email", "type": "text", "required": true } ] } ] }