UNPKG

@mikoto_zero/minigame-open-mcp

Version:

TapTap Open API MCP Server - Documentation and Management APIs for TapTap Minigame and H5 Games (Leaderboard, and more features coming)

18 lines 452 B
/** * Type definitions for TapTap MCP Server */ /** * MAC Token interface * Used for MAC (Message Authentication Code) Token authentication */ export interface MacToken { /** mac_key id, The key identifier */ kid: string; /** Token type, such as "mac" */ token_type: string; /** mac key */ mac_key: string; /** mac algorithm name, such as "hmac-sha-1" */ mac_algorithm: string; } //# sourceMappingURL=index.d.ts.map