Skip to main content
Glama
TrackLine
by TrackLine

users_disable

Disable a user to block VPN access in Remnawave panels by providing their UUID for administrative control.

Instructions

Disable a Remnawave user (block VPN access)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesUser UUID

Implementation Reference

  • Tool registration and handler definition for 'users_disable', which calls client.disableUser(uuid).
    server.tool(
        'users_disable',
        'Disable a Remnawave user (block VPN access)',
        {
            uuid: z.string().describe('User UUID'),
        },
        async ({ uuid }) => {
            try {
                const result = await client.disableUser(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