list_pages
List crawled pages for a site, paginated and sorted by URL, returning metadata only. Use returned URLs with read_page to access stored markdown.
Instructions
List crawled pages for a site, paginated and sorted by URL. Returns metadata only (URL, title, depth, crawled_at, content_length). Pass any URL returned here to read_page to get its stored markdown; get_page re-fetches a URL live rather than returning the crawled copy.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| offset | No | Pagination offset, 0-based (default: 0) | |
| site_key | Yes | Site key from config (use list_sites to discover available keys) | |
| max_results | No | Maximum pages to return (default: 100, max: 1000) |