crawl
Discover URLs from a root page, then scrape each page while respecting page limit, depth, and include/exclude filters.
Instructions
Multi-page crawl: discover URLs on root, then scrape each.
Args:
root: start URL.
max_pages: hard cap on pages scraped.
css_selector: reserved for the llm tier.
prefer: "auto" | "fast" | "stealth" | "llm" (llm = Crawl4AI BFS deep-crawl).
include_paths: regex — keep only URLs matching (matched against full URL).
exclude_paths: regex — drop URLs matching (e.g. /tag/|/page/\d+).
max_depth: 0 = flat harvest from the root page's links (default);
>0 = true BFS up to that link depth, honoring the filters.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| root | Yes | ||
| prefer | No | auto | |
| max_depth | No | ||
| max_pages | No | ||
| css_selector | No | ||
| exclude_paths | No | ||
| include_paths | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||