Skip to main content
Glama
TrackLine
by TrackLine

nodes_get

Retrieve a specific VPN node by its UUID for administration and monitoring within the Remnawave panel system.

Instructions

Get a specific node by UUID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesNode UUID

Implementation Reference

  • The handler implementation for the 'nodes_get' tool. It calls the RemnawaveClient's getNodeByUuid method and wraps the result.
    async ({ uuid }) => {
        try {
            const result = await client.getNodeByUuid(uuid);
            return toolResult(result);
        } catch (e) {
            return toolError(e);
        }
    },
  • Registration of the 'nodes_get' tool, defining its name, description, and input schema using zod.
    server.tool(
        'nodes_get',
        'Get a specific node by UUID',
        {
            uuid: z.string().describe('Node UUID'),
        },

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