hosts_list
List all available hosts in the Remnawave VPN panel for user, node, and subscription administration.
Instructions
List all Remnawave hosts
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/hosts.ts:8-18 (handler)The handler for 'hosts_list' tool which calls client.getHosts() to retrieve the list of hosts.
'hosts_list', 'List all Remnawave hosts', {}, async () => { try { const result = await client.getHosts(); return toolResult(result); } catch (e) { return toolError(e); } },