Skip to main content
Glama
TrackLine
by TrackLine

users_enable

Restore VPN access for a disabled Remnawave user by enabling their account with their UUID.

Instructions

Enable a disabled Remnawave user (restore VPN access)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesUser UUID

Implementation Reference

  • Implementation of the 'users_enable' tool, which takes a user UUID and calls the client's enableUser method.
    server.tool(
        'users_enable',
        'Enable a disabled Remnawave user (restore VPN access)',
        {
            uuid: z.string().describe('User UUID'),
        },
        async ({ uuid }) => {
            try {
                const result = await client.enableUser(uuid);
                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