@mcp-z/client
    Preparing search index...

    Interface TokenSet

    OAuth token set with access and refresh tokens

    interface TokenSet {
        accessToken: string;
        clientId?: string;
        clientSecret?: string;
        expiresAt: number;
        refreshToken: string;
        scopes?: string[];
    }
    Index
    accessToken: string

    Access token for API requests

    clientId?: string

    Client ID used for DCR registration (stored for future use)

    clientSecret?: string

    Client secret used for DCR registration (stored for future use)

    expiresAt: number

    Timestamp when access token expires (milliseconds since epoch)

    refreshToken: string

    Refresh token for obtaining new access tokens

    scopes?: string[]

    Scopes granted for this token set