nodes_list
Retrieve a complete list of all available VPN nodes for network management and connectivity planning.
Instructions
List all Remnawave nodes
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/nodes.ts:7-19 (handler)The "nodes_list" tool is registered and implemented within the `registerNodeTools` function in `src/tools/nodes.ts`. It takes no arguments and calls `client.getNodes()` to retrieve the node list.
server.tool( 'nodes_list', 'List all Remnawave nodes', {}, async () => { try { const result = await client.getNodes(); return toolResult(result); } catch (e) { return toolError(e); } }, );