hosts_delete
Remove a host from the Remnawave VPN panel by specifying its UUID to manage system resources and maintain network configuration.
Instructions
Delete a host from Remnawave
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Host UUID to delete |
Implementation Reference
- src/tools/hosts.ts:179-196 (handler)The 'hosts_delete' tool registration and handler implementation.
server.tool( 'hosts_delete', 'Delete a host from Remnawave', { uuid: z.string().describe('Host UUID to delete'), }, async ({ uuid }) => { try { await client.deleteHost(uuid); return toolResult({ success: true, message: `Host ${uuid} deleted`, }); } catch (e) { return toolError(e); } }, );