Skip to main content
Glama
TrackLine
by TrackLine

nodes_reorder

Reorder VPN nodes by specifying an ordered array of UUIDs to adjust their sequence in the Remnawave panel.

Instructions

Reorder nodes by providing an ordered array of UUIDs

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidsYesOrdered array of node UUIDs

Implementation Reference

  • The 'nodes_reorder' tool handler, which calls 'client.reorderNodes' and returns the result using 'toolResult'.
    server.tool(
        'nodes_reorder',
        'Reorder nodes by providing an ordered array of UUIDs',
        {
            uuids: z
                .array(z.string())
                .describe('Ordered array of node UUIDs'),
        },
        async ({ uuids }) => {
            try {
                const result = await client.reorderNodes(uuids);
                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