users_disable
Disable a user to block VPN access in Remnawave panels by providing their UUID for administrative control.
Instructions
Disable a Remnawave user (block VPN access)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | User UUID |
Implementation Reference
- src/tools/users.ts:192-206 (handler)Tool registration and handler definition for 'users_disable', which calls client.disableUser(uuid).
server.tool( 'users_disable', 'Disable a Remnawave user (block VPN access)', { uuid: z.string().describe('User UUID'), }, async ({ uuid }) => { try { const result = await client.disableUser(uuid); return toolResult(result); } catch (e) { return toolError(e); } }, );