system_metadata
Retrieve metadata and version details for Remnawave VPN panel management and system diagnostics.
Instructions
Get Remnawave panel metadata and version information
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/system.ts:79-91 (handler)The 'system_metadata' tool is registered using 'server.tool'. The handler calls 'client.getMetadata()' and returns the result using 'toolResult'.
server.tool( 'system_metadata', 'Get Remnawave panel metadata and version information', {}, async () => { try { const result = await client.getMetadata(); return toolResult(result); } catch (e) { return toolError(e); } }, );