Skip to main content
Glama
TrackLine
by TrackLine

squads_list

Retrieve a comprehensive list of all internal squads within the Remnawave VPN panel for administrative oversight and management.

Instructions

List all internal squads

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The 'squads_list' tool is registered here, using the client.getInternalSquads() method as its handler.
    server.tool(
        'squads_list',
        'List all internal squads',
        {},
        async () => {
            try {
                const result = await client.getInternalSquads();
                return toolResult(result);
            } catch (e) {
                return toolError(e);
            }
        },
    );
  • The actual handler logic for 'squads_list' which performs a GET request to fetch internal squads via the Remnawave API.
    async getInternalSquads() {
        return this.get(REST_API.INTERNAL_SQUADS.GET);
    }

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