nodes_disable
Disable a VPN node by its UUID to temporarily remove it from service for maintenance or troubleshooting in the Remnawave panel.
Instructions
Disable a node
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Node UUID |
Implementation Reference
- src/tools/nodes.ts:186-200 (handler)The registration and handler implementation for the 'nodes_disable' tool. It calls client.disableNode(uuid) and returns a toolResult or toolError.
server.tool( 'nodes_disable', 'Disable a node', { uuid: z.string().describe('Node UUID'), }, async ({ uuid }) => { try { const result = await client.disableNode(uuid); return toolResult(result); } catch (e) { return toolError(e); } }, );