system_bandwidth_stats
Retrieve bandwidth usage statistics for monitoring network performance and managing VPN panel resources.
Instructions
Get bandwidth statistics
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/system.ts:23-35 (handler)The handler for system_bandwidth_stats which calls client.getBandwidthStats() and wraps the result.
server.tool( 'system_bandwidth_stats', 'Get bandwidth statistics', {}, async () => { try { const result = await client.getBandwidthStats(); return toolResult(result); } catch (e) { return toolError(e); } }, );