auth_status
Check current authentication status with the Remnawave VPN panel to verify user access and session validity for administrative tasks.
Instructions
Check current authentication status with Remnawave panel
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/system.ts:107-116 (registration)Registration of the 'auth_status' tool.
server.tool( 'auth_status', 'Check current authentication status with Remnawave panel', {}, async () => { try { const result = await client.getAuthStatus(); return toolResult(result); } catch (e) { return toolError(e); - src/client/index.ts:313-315 (handler)The actual implementation of the getAuthStatus method called by the 'auth_status' tool.
async getAuthStatus() { return this.get(REST_API.AUTH.GET_STATUS); }