Skip to main content
Glama
TrackLine
by TrackLine

nodes_disable

Disable a VPN node by its UUID to temporarily remove it from service for maintenance or troubleshooting in the Remnawave panel.

Instructions

Disable a node

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesNode UUID

Implementation Reference

  • The registration and handler implementation for the 'nodes_disable' tool. It calls client.disableNode(uuid) and returns a toolResult or toolError.
    server.tool(
        'nodes_disable',
        'Disable a node',
        {
            uuid: z.string().describe('Node UUID'),
        },
        async ({ uuid }) => {
            try {
                const result = await client.disableNode(uuid);
                return toolResult(result);
            } catch (e) {
                return toolError(e);
            }
        },
    );

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