Skip to main content
Glama
TrackLine
by TrackLine

system_nodes_statistics

Retrieve real-time statistics for VPN nodes to monitor system health and performance within the Remnawave administration panel.

Instructions

Get node statistics

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The tool 'system_nodes_statistics' is registered in the server using server.tool. It calls the 'client.getNodesStatistics()' method.
    server.tool(
        'system_nodes_statistics',
        'Get node statistics',
        {},
        async () => {
            try {
                const result = await client.getNodesStatistics();
                return toolResult(result);
            } catch (e) {
                return toolError(e);
            }
        },
    );
  • The handler implementation in the client calls the REST API endpoint defined as REST_API.SYSTEM.STATS.NODES_STATS.
    async getNodesStatistics() {
        return this.get(REST_API.SYSTEM.STATS.NODES_STATS);
    }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/TrackLine/mcp-remnawave'

If you have feedback or need assistance with the MCP directory API, please join our Discord server