UNPKG

rednote-mcp

Version:

A friendly tool to help you access and interact with Xiaohongshu (RedNote) content through Model Context Protocol.

15 lines (14 loc) 382 B
import { Browser, Cookie } from 'playwright'; export declare class AuthManager { private browser; private context; private page; private cookieManager; constructor(cookiePath?: string); getBrowser(): Promise<Browser>; getCookies(): Promise<Cookie[]>; login(options?: { timeout?: number; }): Promise<void>; cleanup(): Promise<void>; }