UNPKG

puppeteer-vision-mcp-server

Version:

MCP Server for scraping webpages and converting to markdown

8 lines 477 B
import { ScrapeResult, WebpageScrapeOptions } from '../types/index.js'; /** * Visits a webpage, handles interactions, and extracts content * @param options Configuration options for the scraping operation * @returns Markdown content or error message */ export declare function visitWebPage({ url, autoInteract, maxInteractionAttempts, waitForNetworkIdle, includeSameDomainLinks, }: WebpageScrapeOptions): Promise<ScrapeResult>; //# sourceMappingURL=webpage-scraper.d.ts.map