Skip to main content
Glama
TrackLine
by TrackLine

nodes_enable

Activate a disabled VPN node by providing its UUID to restore connectivity and functionality within the network.

Instructions

Enable a disabled node

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesNode UUID

Implementation Reference

  • The handler function for the 'nodes_enable' tool, which calls the client's enableNode method.
    async ({ uuid }) => {
        try {
            const result = await client.enableNode(uuid);
            return toolResult(result);
        } catch (e) {
            return toolError(e);
        }
    },
  • Tool registration for 'nodes_enable' using the server.tool method.
    server.tool(
        'nodes_enable',
        'Enable a disabled node',
        {
            uuid: z.string().describe('Node UUID'),
        },
        async ({ uuid }) => {
            try {
                const result = await client.enableNode(uuid);
                return toolResult(result);
            } catch (e) {
                return toolError(e);
            }
        },
    );
  • Input schema definition for 'nodes_enable', requiring a 'uuid' string.
    {
        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