Skip to main content
Glama
TrackLine
by TrackLine

subscription_info

Retrieve subscription details using a short UUID to access account information and service status for VPN panel management.

Instructions

Get subscription info by short UUID (public endpoint)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
shortUuidYesShort UUID

Implementation Reference

  • The actual implementation of the getSubscriptionInfo client method used by the tool.
    async getSubscriptionInfo(shortUuid: string) {
        return this.get(REST_API.SUBSCRIPTION.GET_INFO(shortUuid));
    }
  • The registration and tool handler for the 'subscription_info' MCP tool.
    server.tool(
        'subscription_info',
        'Get subscription info by short UUID (public endpoint)',
        {
            shortUuid: z.string().describe('Short UUID'),
        },
        async ({ shortUuid }) => {
            try {
                const result =
                    await client.getSubscriptionInfo(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