Skip to main content
Glama
TrackLine
by TrackLine

users_get_by_short_uuid

Retrieve user information from the Remnawave VPN panel using a short UUID identifier for administration and management purposes.

Instructions

Get a Remnawave user by their short UUID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
shortUuidYesShort UUID

Implementation Reference

  • The 'users_get_by_short_uuid' tool is registered using `server.tool` and handles the request by calling `client.getUserByShortUuid(shortUuid)`.
    server.tool(
        'users_get_by_short_uuid',
        'Get a Remnawave user by their short UUID',
        {
            shortUuid: z.string().describe('Short UUID'),
        },
        async ({ shortUuid }) => {
            try {
                const result = await client.getUserByShortUuid(shortUuid);
                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