Skip to main content
Glama
TrackLine
by TrackLine

users_get

Retrieve a specific user from the Remnawave VPN panel using their unique UUID identifier for administration and management purposes.

Instructions

Get a specific Remnawave user by their UUID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesUser UUID

Implementation Reference

  • The handler logic for the users_get tool, which calls client.getUserByUuid(uuid).
    async ({ uuid }) => {
        try {
            const result = await client.getUserByUuid(uuid);
            return toolResult(result);
        } catch (e) {
            return toolError(e);
        }
    },
  • The input schema definition for the users_get tool, requiring a user UUID.
    {
        uuid: z.string().describe('User UUID'),
    },
  • The registration of the users_get tool using server.tool.
    server.tool(
        'users_get',
        'Get a specific Remnawave user by their UUID',
        {
            uuid: z.string().describe('User UUID'),
        },
        async ({ uuid }) => {
            try {
                const result = await client.getUserByUuid(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