UNPKG

@just-every/mcp-read-website-fast

Version:

Markdown Content Preprocessor - Fetch web pages, extract content, convert to clean Markdown

9 lines (8 loc) 263 B
interface FetchOptions { userAgent?: string; timeout?: number; maxRedirections?: number; } export declare function fetchStream(url: string, options?: FetchOptions): Promise<string>; export declare function isValidUrl(url: string): boolean; export {};