rednote-mcp
Version:
A friendly tool to help you access and interact with Xiaohongshu (RedNote) content through Model Context Protocol.
15 lines (14 loc) • 346 B
TypeScript
import { Page } from 'playwright';
export interface NoteDetail {
title: string;
content: string;
tags: string[];
imgs?: string[];
videos?: string[];
url: string;
author: string;
likes?: number;
collects?: number;
comments?: number;
}
export declare function GetNoteDetail(page: Page): Promise<NoteDetail>;