CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Wick

wickproject/wick
6STDIOregistry active
Summary

This connects Claude to the web through Chrome's actual TLS stack, which means it gets past Cloudflare, PerimeterX, and other bot detection that blocks standard HTTP libraries. You get five tools: wick_fetch for single pages, wick_crawl for following links across a site, wick_map for sitemap discovery, wick_search for web queries, and wick_download for pulling video from Reddit and YouTube. Everything returns clean markdown. It runs locally from your IP and also exposes an HTTP API on localhost:8090 if you want to call it from Python or other tools. The free tier is unlimited, and there's a Pro version with browser rendering for $20/month flat.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

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 setup

Linux (apt):

curl -fsSL https://wickproject.github.io/wick/apt/install.sh | bash
wick setup

npm (any platform):

npm install -g wick-mcp
wick setup

wick setup auto-detects your MCP clients (Claude Code, Cursor, etc.) and configures them.

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.com
ParameterTypeDefaultDescription
urlstringrequiredThe URL to fetch
formatstring"markdown"Output: markdown, html, or text
respect_robotsbooltrueWhether 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 10
ParameterTypeDefaultDescription
urlstringrequiredStarting URL
max_depthnumber2How many links deep to follow (max 5)
max_pagesnumber10Pages to fetch (max 50)
path_filterstringnoneOnly crawl paths starting with this prefix
respect_robotsbooltrueWhether 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 100
ParameterTypeDefaultDescription
urlstringrequiredStarting URL
limitnumber100Max URLs to discover (max 5000)
use_sitemapbooltrueCheck sitemap.xml first
path_filterstringnoneOnly 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 ./archive

wick_session

Clear cookies and session data to start fresh.

wick session clear

HTTP 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 markdown

All endpoints return JSON. Full API docs.

100% anti-bot success rate

We tested Wick Pro against 25 sites spanning five tiers of 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

All running locally with zero cloud dependencies.

How Wick compares

WickFirecrawlBright DataBrowserbasePlaywright MCP
Anti-bot success rate100%83%~100%90%0%
Runs locallyYesNoNoNoYes
Crawl / MapYesYesNoNoNo
Your residential IPYesNoPooledPooledYes
Your data stays localYesNoNoNoYes
FreeUnlimited500 pages5K req/mo1 hrFree
Pro pricing$20/mo flat$19-599/moUsage-based$20-99/moFree

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 --release

The binary is at rust/target/release/wick.

License

MIT


getwick.dev | Docs | Blog | hello@getwick.dev

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Web & Browser AutomationDocuments & Knowledge
Registryactive
Packagewick-mcp
TransportSTDIO
UpdatedMar 25, 2026
View on GitHub

Related Web & Browser Automation MCP Servers

View all →
Browser Use

therealtimex/browser-use

AI browser automation - navigate, click, type, extract content, and run autonomous web tasks
Fetcher

jae-jae/fetcher-mcp

Fetch web page content using a Playwright headless browser with intelligent content extraction and Markdown/HTML output.
1k
Puppeteer

merajmehrabi/puppeteer-mcp-server

This MCP server provides browser automation capabilities through Puppeteer, allowing interaction with both new browser instances and existing Chrome windows.
449
Playwright Mcp Server

com.thenextgennexus/playwright-mcp-server

Headless browser primitives for AI agents when sites need real JS rendering.
Browser

saik0s/mcp-browser-use

Provides a browser automation MCP server that lets AI assistants control a real browser for navigation, form interaction, data extraction, and more.
933
Browser Use

kontext-dev/browser-use-mcp-server

Browse the web, directly from Cursor etc.
822