nodes_get
Retrieve a specific VPN node by its UUID for administration and monitoring within the Remnawave panel system.
Instructions
Get a specific node by UUID
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Node UUID |
Implementation Reference
- src/tools/nodes.ts:27-34 (handler)The handler implementation for the 'nodes_get' tool. It calls the RemnawaveClient's getNodeByUuid method and wraps the result.
async ({ uuid }) => { try { const result = await client.getNodeByUuid(uuid); return toolResult(result); } catch (e) { return toolError(e); } }, - src/tools/nodes.ts:21-26 (registration)Registration of the 'nodes_get' tool, defining its name, description, and input schema using zod.
server.tool( 'nodes_get', 'Get a specific node by UUID', { uuid: z.string().describe('Node UUID'), },