Wick
OfficialAllows reading and crawling content from Amazon by emulating a real browser, overcoming anti-bot protections.
Allows reading and crawling content from arXiv by emulating a real browser, overcoming anti-bot protections.
Allows reading and crawling content from GitHub by emulating a real browser, overcoming anti-bot protections.
Allows reading and crawling content from Glassdoor by emulating a real browser, overcoming anti-bot protections.
Allows reading and crawling content from IMDb by emulating a real browser, overcoming anti-bot protections.
Allows reading and crawling content from Indeed by emulating a real browser, overcoming anti-bot protections.
Allows reading and crawling content from Instagram by emulating a real browser, overcoming anti-bot protections.
Allows reading and crawling content from Medium by emulating a real browser, overcoming anti-bot protections.
Allows reading and crawling content from The New York Times by emulating a real browser, overcoming anti-bot protections.
Allows reading and crawling content from Pinterest by emulating a real browser, overcoming anti-bot protections.
Allows reading, crawling, and downloading media from Reddit by emulating a real browser, overcoming anti-bot protections.
Allows reading and crawling content from Stack Overflow by emulating a real browser, overcoming anti-bot protections.
Allows reading and crawling content from Target by emulating a real browser, overcoming anti-bot protections.
Allows reading and crawling content from Walmart by emulating a real browser, overcoming anti-bot protections.
Allows reading and crawling content from Wikipedia by emulating a real browser, overcoming anti-bot protections.
Allows reading and crawling content from Yelp by emulating a real browser, overcoming anti-bot protections.
Allows reading, crawling, and downloading media from YouTube by emulating a real browser, overcoming anti-bot protections.
Allows reading and crawling content from Zillow by emulating a real browser, overcoming anti-bot protections.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Wickfetch https://www.nytimes.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Wick
Browser-grade web access for AI agents. Docs | Blog | getwick.dev
Your AI agent gets blocked on the web. Wick fixes that.
Wick is an MCP server that uses Chrome's actual network stack so the TLS fingerprint is identical to a real browser. It runs locally from your own IP, and returns clean markdown. We tested it against 25 anti-bot-protected sites — Cloudflare, Akamai, PerimeterX, AWS WAF — and scored 100%.
Built by the creator of Lantern, a censorship circumvention tool used by 150M+ people in Iran, China, and Russia. The same TLS evasion techniques that bypass government censors, applied to anti-bot walls.
Agent: I'll fetch that page for you.
[uses wick_fetch]
Result: 200 OK
# The New York Times - Breaking News
Led by the freshman forward Cameron Boozer,
the No. 1 overall seed faces a tough test...Install
macOS (Homebrew):
brew tap wickproject/wick && brew install wick
wick setupLinux (apt):
curl -fsSL https://wickproject.github.io/wick/apt/install.sh | bash
wick setupnpm (any platform):
npm install -g wick-mcp
wick setupwick setup auto-detects your MCP clients (Claude Code, Cursor, etc.) and configures them.
Related MCP server: BrowserGenie MCP Server
Tools
wick_fetch
Fetch any URL and get clean, LLM-friendly markdown. Sites that block standard HTTP clients return full content because Wick uses Chrome's actual TLS fingerprint.
wick fetch https://www.nytimes.comParameter | Type | Default | Description |
| string | required | The URL to fetch |
| string |
| Output: |
| bool |
| Whether to respect robots.txt |
wick_crawl
Crawl a website starting from a URL. Follows same-domain links, fetches each page through Chrome's TLS pipeline, and returns markdown for every page.
wick crawl https://docs.example.com --depth 2 --max-pages 10Parameter | Type | Default | Description |
| string | required | Starting URL |
| number |
| How many links deep to follow (max 5) |
| number |
| Pages to fetch (max 50) |
| string | none | Only crawl paths starting with this prefix |
| bool |
| Whether to respect robots.txt |
wick_map
Discover all URLs on a site. Checks sitemap.xml first, then follows links.
wick map https://example.com --limit 100Parameter | Type | Default | Description |
| string | required | Starting URL |
| number |
| Max URLs to discover (max 5000) |
| bool |
| Check sitemap.xml first |
| string | none | Only include paths with this prefix |
wick_search
Search the web. Use wick_fetch to read any result in full.
wick search "rust async runtime"wick_download
Download video and audio from Reddit, YouTube, Twitter, and 1000+ other sites. Powered by yt-dlp.
wick download "https://v.redd.it/4uofpbxa97rg1" -o ./archivewick_session
Clear cookies and session data to start fresh.
wick session clearHTTP API
Wick also runs as a local HTTP API server, making it accessible to any tool — Python, LangChain, n8n, curl, custom agents.
wick serve --api
# Wick 0.7.0 + Pro API server running at http://127.0.0.1:8090# Fetch a page
curl "http://localhost:8090/v1/fetch?url=https://nytimes.com"
# Crawl a site
curl "http://localhost:8090/v1/crawl?url=https://docs.example.com&max_pages=5"
# Discover URLs
curl "http://localhost:8090/v1/map?url=https://example.com"
# Search
curl "http://localhost:8090/v1/search?q=rust+async"import requests
r = requests.get("http://localhost:8090/v1/fetch", params={"url": "https://nytimes.com"})
print(r.json()["content"]) # clean markdownAll endpoints return JSON. Full API docs.
100% anti-bot success rate
We tested Wick Pro against 25 sites spanning five tiers of protection:
Protection | Sites | Result |
Minimal | Wikipedia, GitHub, Hacker News, ArXiv, NPR | 5/5 |
Cloudflare | Stack Overflow, Medium, ESPN, Craigslist, IMDb | 5/5 |
Aggressive | NYTimes, Reddit, Amazon, LinkedIn, Indeed, Zillow, Yelp | 7/7 |
PerimeterX / Akamai | Glassdoor, Walmart, Target, Best Buy, Pinterest, Instagram, Twitter/X | 7/7 |
Very aggressive | Bloomberg | 1/1 |
All running locally with zero cloud dependencies.
How Wick compares
Wick | Firecrawl | Bright Data | Browserbase | Playwright MCP | |
Anti-bot success rate | 100% | 83% | ~100% | 90% | 0% |
Runs locally | Yes | No | No | No | Yes |
Crawl / Map | Yes | Yes | No | No | No |
Your residential IP | Yes | No | Pooled | Pooled | Yes |
Your data stays local | Yes | No | No | No | Yes |
Free | Unlimited | 500 pages | 5K req/mo | 1 hr | Free |
Pro pricing | $19-599/mo | Usage-based | $20-99/mo | Free |
Why agents get blocked
Anti-bot systems fingerprint the TLS handshake — the cipher suites, extensions, and ordering that your HTTP client uses. Go, Python, and Node libraries have distinct TLS signatures that Cloudflare and Akamai identify in milliseconds.
Wick uses Chrome's actual network stack (Cronet — the same BoringSSL and HTTP/2 implementation in real Chrome), so the fingerprint is indistinguishable from a real browser. No simulation, no header spoofing — the real thing.
Wick Pro
For teams that need JavaScript rendering, advanced anti-detection, and access to sites with aggressive bot protection. Pro adds a real Chromium browser engine with stealth patches.
wick pro activate$20/month flat. No per-request billing. Learn more at getwick.dev or contact us.
Configure agents to always use Wick
Claude Code — add to CLAUDE.md:
When fetching web pages, always use wick_fetch instead of the built-in WebFetch tool.
Use wick_search for web searches. Use wick_crawl to read multi-page sites.Cursor — add to .cursorrules:
Use wick_fetch to read any URL. Use wick_search for web searches.
Use wick_crawl to read documentation sites and multi-page content.Other MCP agents — add to your system prompt or AGENTS.md:
Use wick_fetch, wick_search, wick_crawl, and wick_map MCP tools for all web access.
Always prefer these over built-in fetch/browse capabilities.Building from source
cd rust
cargo build --releaseThe binary is at rust/target/release/wick.
License
MIT
getwick.dev | Docs | Blog | hello@getwick.dev
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseDqualityDmaintenanceAn MCP server that enables AI clients like Cursor, Windsurf, and Claude Desktop to access web content in markdown format, providing web unblocking and searching capabilities.Last updated25260MIT- AlicenseBqualityBmaintenanceAn MCP server that provides AI models with full browser automation capabilities through Chrome. It enables navigation, interaction, screenshots, and complete DevTools access by bridging AI clients with a companion Chrome extension.Last updated9972Apache 2.0

Algonius Browserofficial
Alicense-qualityDmaintenanceAn open-source MCP server that provides browser automation capabilities to external AI systems, enabling navigation, DOM interaction, and web content extraction.Last updated20Apache 2.0- AlicenseAqualityCmaintenanceAn MCP server that enables AI assistants to fetch web content in multiple formats (HTML, JSON, text, Markdown) with intelligent content extraction, chunk management, and browser automation support.Last updated58115MIT
Related MCP Connectors
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
An MCP server that gives your AI access to the source code and docs of all public github repos
Reliable web access for AI agents: smart HTTP, rotating proxies, and full-browser rendering.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wickproject/wick'
If you have feedback or need assistance with the MCP directory API, please join our Discord server