Skip to main content
Glama
TrackLine
by TrackLine

squads_delete

Remove an internal squad from the Remnawave VPN panel by specifying its unique identifier to manage organizational structure.

Instructions

Delete an internal squad

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesSquad UUID to delete

Implementation Reference

  • The implementation of the 'squads_delete' tool, which takes a UUID and calls the client's deleteInternalSquad method.
    server.tool(
        'squads_delete',
        'Delete an internal squad',
        {
            uuid: z.string().describe('Squad UUID to delete'),
        },
        async ({ uuid }) => {
            try {
                await client.deleteInternalSquad(uuid);
                return toolResult({
                    success: true,
                    message: `Squad ${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