Skip to main content
Glama
TrackLine
by TrackLine

squads_create

Create a new internal squad within the Remnawave VPN panel to organize users and manage team access.

Instructions

Create a new internal squad

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesSquad name

Implementation Reference

  • The 'squads_create' tool is registered using 'server.tool', with the handler implementation invoking 'client.createInternalSquad'.
    server.tool(
        'squads_create',
        'Create a new internal squad',
        {
            name: z.string().describe('Squad name'),
        },
        async (params) => {
            try {
                const result = await client.createInternalSquad(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