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
| Name | Required | Description | Default |
|---|---|---|---|
| shortUuid | Yes | Short UUID |
Implementation Reference
- src/tools/users.ts:56-70 (handler)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); } }, );