nodes_restart
Restart a specific node in the Remnawave VPN panel to resolve connectivity issues or apply configuration changes.
Instructions
Restart a specific node
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Node UUID |
Implementation Reference
- src/tools/nodes.ts:202-216 (handler)The implementation of the 'nodes_restart' tool, which uses the RemnawaveClient to restart a node by UUID.
server.tool( 'nodes_restart', 'Restart a specific node', { uuid: z.string().describe('Node UUID'), }, async ({ uuid }) => { try { const result = await client.restartNode(uuid); return toolResult(result); } catch (e) { return toolError(e); } }, );