Skip to main content
Glama
TrackLine
by TrackLine

nodes_delete

Remove nodes from the Remnawave VPN panel by specifying their UUID to manage system resources and maintain network infrastructure.

Instructions

Delete a node from Remnawave

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesNode UUID to delete

Implementation Reference

  • Registration and implementation of the 'nodes_delete' tool. The handler calls `client.deleteNode(uuid)` and returns a success status.
    server.tool(
        'nodes_delete',
        'Delete a node from Remnawave',
        {
            uuid: z.string().describe('Node UUID to delete'),
        },
        async ({ uuid }) => {
            try {
                await client.deleteNode(uuid);
                return toolResult({
                    success: true,
                    message: `Node ${uuid} deleted`,
                });
            } 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