hwid_device_delete
Remove a specific hardware identification (HWID) device from the Remnawave VPN panel by providing its UUID to manage device access and security.
Instructions
Delete a specific HWID device
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| deviceUuid | Yes | HWID device UUID to delete |
Implementation Reference
- src/tools/hwid.ts:29-43 (handler)The hwid_device_delete tool is registered here and calls client.deleteHwidDevice to perform the deletion.
server.tool( 'hwid_device_delete', 'Delete a specific HWID device', { deviceUuid: z.string().describe('HWID device UUID to delete'), }, async ({ deviceUuid }) => { try { const result = await client.deleteHwidDevice(deviceUuid); return toolResult(result); } catch (e) { return toolError(e); } }, );