Skip to main content
Glama
TrackLine
by TrackLine

hwid_devices_list

Retrieve hardware ID devices associated with a specific user to manage VPN access and device authorization.

Instructions

List HWID devices for a specific user

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
userUuidYesUser UUID

Implementation Reference

  • The handler logic for 'hwid_devices_list' that calls 'client.getUserHwidDevices'.
    async ({ userUuid }) => {
        try {
            const result = await client.getUserHwidDevices(userUuid);
            return toolResult(result);
        } catch (e) {
            return toolError(e);
        }
    },
  • Registration of the 'hwid_devices_list' tool within the McpServer.
    server.tool(
        'hwid_devices_list',
        'List HWID devices for a specific user',
        {
            userUuid: z.string().describe('User UUID'),
        },
  • The API client helper function that performs the actual network request to list HWID devices.
    async getUserHwidDevices(userUuid: string) {
        return this.get(REST_API.HWID.GET_USER_HWID_DEVICES(userUuid));
    }

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