system_health
Monitor and verify the operational status of the Remnawave VPN panel to ensure system availability and performance.
Instructions
Check Remnawave panel health status
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/system.ts:65-77 (handler)The 'system_health' tool is registered using `server.tool` and calls `client.getHealth()` to fetch health status.
server.tool( 'system_health', 'Check Remnawave panel health status', {}, async () => { try { const result = await client.getHealth(); return toolResult(result); } catch (e) { return toolError(e); } }, );