users_enable
Restore VPN access for a disabled Remnawave user by enabling their account with their UUID.
Instructions
Enable a disabled Remnawave user (restore VPN access)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | User UUID |
Implementation Reference
- src/tools/users.ts:176-190 (handler)Implementation of the 'users_enable' tool, which takes a user UUID and calls the client's enableUser method.
server.tool( 'users_enable', 'Enable a disabled Remnawave user (restore VPN access)', { uuid: z.string().describe('User UUID'), }, async ({ uuid }) => { try { const result = await client.enableUser(uuid); return toolResult(result); } catch (e) { return toolError(e); } }, );