internal_link_graph
Crawl same-host pages from a starting URL to analyze in-degree, out-degree, orphan pages, broken internal links, and depth distribution for SEO triage.
Instructions
Small BFS crawl from a starting URL within the same host. Returns per-page in-degree + out-degree, orphan pages (zero in-degree), broken internal links (4xx/5xx), and depth distribution. Hard caps: max_depth ≤ 4, max_pages ≤ 200. Not a replacement for a full crawler; sized for in-session triage.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max_depth | No | Max BFS depth. Default 2, ceiling 4. | |
| max_pages | No | Max pages to fetch. Default 50, ceiling 200. | |
| start_url | Yes | Absolute http(s) URL to crawl from. |