turbowebfetch
MCP server that lets Claude Code fetch web content using real Chrome browsers. Renders JavaScript-heavy pages, handles bot mitigation, and runs up to 14 parallel browsers locally with zero API keys. Makes outbound HTTP requests only to URLs the user explicitly asks Claude to fetch.
README
TurboWebFetch
Real browsers. Real content. Full fidelity.
Your AI agents need to read web pages. Documentation, product info, articles, research. But standard fetch tools use plain HTTP - they cannot handle modern client-side rendering or bot mitigation layers, and return empty shells.
TurboWebFetch runs actual Chrome browsers. Your agents see what users see.
14 parallel browsers. Zero API keys. Runs locally.
Prerequisites
Before installing, verify you have:
node --version # Need 18+
python3 --version # Need 3.8+
Google Chrome must be installed (not Chromium).
Quick Start
claude mcp add turbowebfetch npx turbowebfetch
That's it. Your agents now have access to the fetch and fetch_batch tools.
What This Is (And Isn't)
TurboWebFetch helps your AI agents access content you have the right to access. It renders JavaScript-heavy pages that standard tools cannot handle.
It is for:
- Fetching documentation that requires JS rendering (React, Stripe, etc.)
- Product research on e-commerce sites
- Reading articles and news behind JS walls
- Multi-source research for your AI agents
It is not for:
- Circumventing paywalls
- Scraping data you don't have permission to collect
- High-volume data harvesting (rate-limited by design)
- Violating websites' Terms of Service
The challenge-handling exists because many legitimate sites use broad bot mitigation that affects even authorized access. If a site restricts access and you don't have permission, respect that.
WebFetch vs TurboWebFetch
| Scenario | WebFetch | TurboWebFetch |
|---|---|---|
| Static HTML pages | Works | Works (overkill) |
| JavaScript SPAs | Empty content | Full render |
| Sites with JS challenges | Fails | Negotiates automatically |
| Bot mitigation layers | Fails | Negotiates automatically |
| Parallel agents | One at a time | 14 simultaneous browsers |
| JS-heavy sites (docs, e-commerce) | Blocked or empty | Works |
Rule of thumb: Use WebFetch for simple pages. Use TurboWebFetch when that fails.
Usage
Single page:
mcp__turbowebfetch__fetch(url: "https://react.dev/learn", format: "markdown")
Response:
{
"success": true,
"url": "https://react.dev/learn",
"title": "Quick Start - React",
"content": "# Quick Start\n\nWelcome to the React documentation...",
"status": 200
}
Batch (parallel):
mcp__turbowebfetch__fetch_batch(
urls: [
"https://react.dev/learn",
"https://nextjs.org/docs",
"https://www.target.com/p/some-product"
],
format: "text"
)
All three fetch simultaneously in separate browsers.
Parameters
| Parameter | Default | Description |
|---|---|---|
url |
required | The URL to fetch |
format |
"text" |
"text", "markdown", or "html" |
timeout |
60000 |
Milliseconds. Increase to 90000+ for slow sites |
wait_for |
- | CSS selector to wait for (rarely needed) |
The tool auto-detects when content has loaded. Use wait_for only if auto-detection fails on a specific site.
Known Limitations
Sites that don't work:
- Login-required content - This tool doesn't handle authentication
- Interactive CAPTCHAs - It handles JS challenges, not image selection tasks
- Zillow - Requires interactive verification
- Bloomberg - Requires interactive verification
Performance:
- Adds 5-10 seconds per page (browser startup + rendering + human-like behavior)
- Memory usage: ~200-400MB per browser instance
- For 14 parallel fetches, expect ~4GB RAM usage
Not for scale: This is a user assistant, not a scraping service. Rate-limited to 60 requests/minute per domain.
Configuration
Optional environment variables:
| Variable | Default | Description |
|---|---|---|
TURBOFETCH_MAX_PROCESSES |
14 |
Max concurrent browsers |
TURBOFETCH_HUMAN_MODE |
true |
Human-like scrolling/delays |
TURBOFETCH_HEADLESS |
true |
Headless mode (auto-switches if blocked) |
Most users won't need to change these.
Troubleshooting
"Python not found"
# macOS
brew install python3
# Ubuntu/Debian
sudo apt install python3 python3-venv
"Chrome not launching"
Install Google Chrome from https://google.com/chrome (not Chromium).
"Content is empty"
Some heavily lazy-loaded sites need an explicit selector:
mcp__turbowebfetch__fetch(
url: "https://www.bestbuy.com/site/searchpage.jsp?st=laptop",
wait_for: "[class*=\"product\"]",
timeout: 90000
)
"Page not loading on [site]"
Some sites require interactive verification that automated browsers cannot complete. Open an issue with the URL.
How It Works
- Your agent calls the MCP tool
- TurboWebFetch spawns a Python process with Chrome (via nodriver)
- Chrome loads the page, executes JavaScript, negotiates any browser challenges
- Content is extracted and returned as clean text/markdown/HTML
- Browser closes, process exits
Each fetch is isolated. No cookies or state persist between requests.
Development
Clone and build locally:
git clone https://github.com/aza-ali/turbowebfetch.git
cd turbowebfetch
npm install
npm run build
Python setup (virtual environment + nodriver) runs automatically during npm install. If it fails, run manually:
npm run setup:python
Then register with Claude Code:
claude mcp add turbowebfetch node /path/to/turbowebfetch/dist/index.js
License
MIT License. See LICENSE for details.
Copyright (c) 2026 Mourtaza Ali
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。