Skip to main content
Glama
TrackLine
by TrackLine

squads_update

Modify internal squad details by specifying the squad UUID and updating its name to maintain accurate team organization within the VPN panel.

Instructions

Update an internal squad

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesSquad UUID
nameNoNew squad name

Implementation Reference

  • The 'squads_update' tool is registered in this block, defining its schema and handler logic.
    server.tool(
        'squads_update',
        'Update an internal squad',
        {
            uuid: z.string().describe('Squad UUID'),
            name: z.string().optional().describe('New squad name'),
        },
        async (params) => {
            try {
                const result = await client.updateInternalSquad(params);
                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