Skip to main content
Glama
TrackLine
by TrackLine

subscriptions_get_by_uuid

Retrieve subscription details using a unique identifier to access specific VPN panel information for administration purposes.

Instructions

Get subscription details by UUID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesSubscription UUID

Implementation Reference

  • Tool registration and handler for subscriptions_get_by_uuid.
    server.tool(
        'subscriptions_get_by_uuid',
        'Get subscription details by UUID',
        {
            uuid: z.string().describe('Subscription UUID'),
        },
        async ({ uuid }) => {
            try {
                const result = await client.getSubscriptionByUuid(uuid);
                return toolResult(result);
            } catch (e) {
                return toolError(e);
            }
        },
    );
  • Client helper method that executes the API request for subscription retrieval by UUID.
    async getSubscriptionByUuid(uuid: string) {
        return this.get(REST_API.SUBSCRIPTIONS.GET_BY.UUID(uuid));
    }

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