← Back to Wick

Wick 0.6: Site Crawling, 100% Anti-Bot Success, and How We Compare

March 26, 2026

Wick 0.6 adds multi-page site crawling, closes the biggest feature gap with cloud scraping services, and ships with benchmark results we're proud of.

New: wick_crawl

Crawl a website starting from any URL. Wick follows same-domain links, fetches each page through the same Chrome TLS pipeline as wick_fetch, and returns clean markdown for every page it visits.

wick crawl https://docs.example.com --depth 2 --max-pages 10

Your agent gets structured output with each page's title, URL, and content. Media detection works too — embedded video and audio are surfaced automatically across all crawled pages.

Parameters: max_depth (default 2), max_pages (default 10), path_filter (restrict to a section like /docs/), and format (markdown, html, or text). Rate-limited at 500ms between requests to be polite to servers.

New: wick_map

Discover all URLs on a site before you start fetching. Wick checks sitemap.xml first, then follows links to build a complete URL map.

wick map https://example.com --limit 100

# Site Map: example.com
# Found 47 URLs (12 from sitemap.xml)
#
# - https://example.com/
# - https://example.com/about
# - https://example.com/docs/intro
# ...

Useful for understanding site structure before targeted fetching, or for building a RAG knowledge base from an entire documentation site.

100% Anti-Bot Success Rate

We tested Wick Pro against 25 sites spanning five tiers of anti-bot protection:

ProtectionSitesResult
MinimalWikipedia, GitHub, Hacker News, ArXiv, NPR5/5
CloudflareStack Overflow, Medium, ESPN, Craigslist, IMDb5/5
AggressiveNYTimes, Reddit, Amazon, LinkedIn, Indeed, Zillow, Yelp7/7
PerimeterX / AkamaiGlassdoor, Walmart, Target, Best Buy, Pinterest, Instagram, Twitter/X7/7
Very aggressiveBloomberg1/1

25 out of 25. All running locally with zero cloud dependencies.

How Wick compares to cloud scraping services

There are now nine MCP servers for web access listed in benchmark comparisons. Here's where things stand:

WickFirecrawlBright DataBrowserbase
Anti-bot success100%83%~100%90%
Runs locallyYesNoNoNo
Your data stays localYesNoNoNo
Crawl / MapYesYesNoNo
Free tierUnlimited500 pages5K req/mo1 hr
Pro pricing$20/mo flat$19-599/moUsage-based$20-99/mo

Every other MCP server on this list is a thin client that sends your requests through someone else's cloud. Wick is the only one that runs Chrome's actual network stack on your machine. No per-request billing. No data leaving your network. No cloud dependency.

Bright Data matches our success rate — but their anti-bot infrastructure is built on a residential proxy network sourced from consumer VPN users, and every URL you scrape passes through their servers. Wick uses your own residential IP and keeps everything local.

Five tools, one MCP server

Wick 0.6 now ships with five MCP tools:

Install / Upgrade

# Fresh install
brew tap wickproject/wick && brew install wick && wick setup

# Upgrade
brew upgrade wick

# Check version
wick version
# wick 0.6.0 (rust)

GitHub | Docs | Contact