Skip to main content
Glama
TrackLine
by TrackLine

config_profiles_list

Lists all configuration profiles for managing VPN settings and user access in the Remnawave panel.

Instructions

List all config profiles

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler for the 'config_profiles_list' tool, which calls client.getConfigProfiles().
    async () => {
        try {
            const result = await client.getConfigProfiles();
            return toolResult(result);
        } catch (e) {
            return toolError(e);
        }
    },
  • Registration of the 'config_profiles_list' tool using the McpServer.
    server.tool(
        'config_profiles_list',
        'List all config profiles',
        {},
        async () => {
            try {
                const result = await client.getConfigProfiles();
                return toolResult(result);
            } catch (e) {
                return toolError(e);
            }
        },
    );
  • The client method that performs the actual API request to fetch config profiles.
    async getConfigProfiles() {
        return this.get(REST_API.CONFIG_PROFILES.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