Skip to main content
Glama
TrackLine
by TrackLine

hosts_delete

Remove a host from the Remnawave VPN panel by specifying its UUID to manage system resources and maintain network configuration.

Instructions

Delete a host from Remnawave

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesHost UUID to delete

Implementation Reference

  • The 'hosts_delete' tool registration and handler implementation.
    server.tool(
        'hosts_delete',
        'Delete a host from Remnawave',
        {
            uuid: z.string().describe('Host UUID to delete'),
        },
        async ({ uuid }) => {
            try {
                await client.deleteHost(uuid);
                return toolResult({
                    success: true,
                    message: `Host ${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