What's new in Crawly
Every release, documented.
1.5.3
What's new in v1.5.3
MCP: External link checker
`check_external_links` pings every external link in a crawl, follows redirects up to 5 hops, and reports dead links (4xx/5xx), redirect destinations, and a summary of OK/redirected/dead counts. Supports `domain_filter` to scope checks to a specific domain.
MCP: Internal link map
`get_link_map` returns every crawled page with its internal inlink count. Filter by `orphans` (0 inlinks) or `low` (1-3 inlinks) to find pages that are hard to discover. Use `show_sources: true` to see exactly which pages link to each URL.
MCP: Image auditing
`get_images` queries all images found during a crawl. Filter by `missing_alt` to find accessibility issues, or search by src URL, alt text, or page. Results are grouped by page with the alt value shown (or flagged as no alt attribute or empty alt).
MCP: Site structure
`get_structure` returns the site as a folder tree grouped by URL path segments. Each folder shows page count, average response time, and error count.
MCP: Raw schema data
`get_schema` returns the raw Schema.org JSON-LD found on pages in a crawl. Filter by URL substring or schema type (e.g. "Product").
MCP: Bulk inlink lookup
`get_inlinks` now accepts an array of URLs via the `urls` parameter, so you can check inlinks for multiple pages in a single call instead of firing one request per URL.
MCP: Orphan page detection
`get_pages` has a new `orphan` filter that returns indexable pages with zero internal inlinks in one call, replacing the need to check each page individually.
MCP: Full meta description for long meta filter
`get_pages` with `filter: meta_too_long` now shows the complete meta description with its character count, so you can read and edit it without a separate lookup.
MCP: Auto-compare crawls
`get_issue_diff` no longer requires both crawl IDs. Pass only `crawl_id_after` to automatically compare it against the previous crawl for the same domain, or omit both to compare the last two crawls.
MCP: Ranked linking suggestions
`get_linking_suggestions` now returns candidates ranked by keyword overlap with suggested anchor text, instead of a raw headings dump. A new `target_url` mode finds pages that should link TO a given URL, complementing the existing pillar page mode.
Settings: Claude Desktop
Claude Desktop is now available as a one-click option in Settings > AI Tools, alongside Claude Code, Cursor, Codex, and Windsurf.
Bug fixes
v1.5.0
What's new
Bulk selection across all tabs
Select rows on any tab and copy, export, or open in bulk. Extend selection to all matching results across pages.
Column resizing everywhere
Drag to resize columns on all tabs, not just All URLs.
Images tab improvements
Schema.org validation
Validates structured data against 15 rich result types. Issues surface in the Issues tab and All URLs table.
Open Graph auditing
Missing `og:image`, `og:title`, and `og:description` are detected and listed as issues.
MCP server enhancements
Two new tools: `get_linking_suggestions` for internal linking analysis, and `validate_schema` for structured data audits.
Bug fixes and polish
1.4.0
What's new in v1.4.0
v1.3.9
What's new
Settings screen
A new gear icon in the header opens the Settings panel, with sections for Crawl Defaults (max pages, user agent, crawl speed), Data and Storage (clear history, open DB folder), Claude Code integration, and Legal.
Response Codes tab
A dedicated tab showing a breakdown of all status codes (2xx, 3xx, 4xx, 5xx) with filterable cards and a full URL table including status text and indexability.
Headings tab
Browse all H1s and H2s across your crawl. Filter by Missing H1, Duplicate H1, or Missing H2. H1 length is highlighted when over 70 characters.
External Links tab
All outbound external links in one place, with source page and anchor text. Filterable and exportable.
URL bar in header
A permanent address bar lets you kick off a new crawl from anywhere in the app - just type a URL and press Enter or click Start.
Unlimited crawl pages
Toggle between a page limit and unlimited crawling in both the New Crawl modal and Settings. Unlimited crawls will spider the entire site.
MCP server improvements
Bug fixes