batch_extract_web_content
Extract clean Markdown from multiple website URLs in parallel, pruning web noise to cut token usage. Provides aggregate token statistics per batch.
Instructions
Batch extract token-optimized Markdown content from multiple website URLs concurrently with aggregate token statistics.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | Crawl mode: 'fast' (native HTTP fetch) or 'deep' (headless Playwright browser). | fast |
| urls | Yes | Array of target website URLs to extract. | |
| proxy | No | Optional HTTP/SOCKS5 proxy URL. | |
| cookies | No | Optional custom HTTP cookies key-value dictionary. | |
| headers | No | Optional custom HTTP request headers key-value dictionary. | |
| concurrency | No | Maximum parallel HTTP/browser crawl worker concurrency (default: 3). | |
| max_retries | No | Maximum retry attempts per URL (default: 3). | |
| css_selector | No | Optional CSS selector to filter DOM node across all target URLs. |