turbowebfetch
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).
Related MCP server: crawler-mcp
Quick Start
claude mcp add turbowebfetch npx turbowebfetchThat'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 |
| required | The URL to fetch |
|
|
|
|
| Milliseconds. Increase to 90000+ for slow sites |
| - | 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 |
|
| Max concurrent browsers |
|
| Human-like scrolling/delays |
|
| 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 buildPython setup (virtual environment + nodriver) runs automatically during npm install. If it fails, run manually:
npm run setup:pythonThen register with Claude Code:
claude mcp add turbowebfetch node /path/to/turbowebfetch/dist/index.jsLicense
MIT License. See LICENSE for details.
Copyright (c) 2026 Mourtaza Ali
Available Tools
2 toolsfetchA
Fetch and render a web page using a real Chrome browser. Handles JavaScript-heavy sites, anti-bot protection, and dynamic content. Auto-detects when content has loaded by monitoring DOM changes and network activity.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The URL to fetch (must be a valid HTTP/HTTPS URL) | |
| format | No | Output format: 'html' for raw HTML, 'text' for cleaned text content, 'markdown' for structured markdown | text |
| wait_for | No | CSS selector to wait for before extracting content. Usually not needed - the tool auto-detects content stabilization. Use this only when auto-detection fails and you know the specific element to wait for. Examples: '[class*="product"]' for e-commerce, '.job-card' for job boards, '[data-testid="results"]' for search results. | |
| timeout | No | Timeout in milliseconds (default: 60000, max: 120000). Increase to 90000+ for slow-loading e-commerce or search result pages. | |
| human_mode | No | Enable human-mode scrolling and delays for more natural browsing behavior (default: true) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses use of real Chrome browser, anti-bot handling, auto-detection of content load via DOM/network, and human_mode for natural behavior. Lacks details on error handling, output format specifics, or memory/state implications.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences efficiently convey purpose and capabilities. Front-loaded with essential information, no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Adequately covers main behavior and parameter context. Lacks explicit mention of return format handling (though implied by output format parameter) and error/timeout behavior, but sufficient given the detailed schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with detailed descriptions. The tool description adds minor context (e.g., auto-detection for wait_for) but does not significantly enhance understanding beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states 'Fetch and render a web page' with specific capabilities (JavaScript-heavy, anti-bot, dynamic content). Distinguishes from sibling 'fetch_batch' by focusing on single-page fetch.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies usage for single pages but does not explicitly state when to use this vs. fetch_batch, nor when not to use it. No alternative or prerequisite guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fetch_batchA
Fetch multiple URLs in parallel using real Chrome browsers. Each URL gets its own browser instance for isolation. Auto-detects content stabilization. Returns results in same order as input URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| urls | Yes | Array of URLs to fetch (1-14 URLs) | |
| format | No | Output format for all fetched pages | text |
| timeout | No | Timeout in milliseconds per URL (default: 60000). Increase to 90000+ for slow-loading pages. | |
| human_mode | No | Enable human-mode scrolling and delays for more natural browsing behavior (default: true) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses parallel browser instances, isolation, auto-detected stabilization, and same-order results, but lacks depth on resource usage, rate limiting, or meaning of 'stabilization'. With no annotations, more detail would benefit agent decision-making.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three concise sentences front-load critical purpose and behavior, with no redundant information. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema and description does not detail return structure beyond order preservation. For a tool with 4 parameters and no output schema, more contextual information on results would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers 100% of parameters with descriptions. Description adds context about isolation for urls and auto-detection for human_mode, but this is marginal beyond schema. Baseline score appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it fetches multiple URLs in parallel using real Chrome browsers with isolation and auto-stabilization, distinguishing it from the sibling tool 'fetch' which likely handles single URLs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies usage for multiple URLs needing parallel fetching and isolation, but does not explicitly state when to use versus alternatives, nor provide exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
v1.1.0- First observed
fetch - First observed
fetch_batch
TDQS
Scored across 2 tools
The two tools have clearly distinct purposes: one fetches a single URL, the other fetches multiple URLs in parallel. Descriptions explicitly highlight the difference in scope and isolation, leaving no ambiguity.
Both tool names follow the consistent pattern 'fetch' for single and 'fetch_batch' for batch, using a suffix to indicate the variant. No mixing of styles or conventions.
With only 2 tools, the server is minimal but still covers the basic use cases of single and batch web fetching. The scope is narrow but appropriate for a focused web fetching server, though a few more tools (e.g., with options) could be justified.
The server covers the core functionality of fetching and rendering web pages, but lacks advanced features like custom headers, cookies, or wait conditions. Users needing fine-grained control may find the surface incomplete, though basic needs are met.
Maintenance
Related MCP Connectors
Zenrows MCP server — Fetch, Extract, Batch, and Browser Sessions for AI coding assistants
One MCP for the Web. Easily search, crawl, navigate, and extract websites without getting blocked.…
Docs: https://docs.keenable.ai/mcp-server Keenable is a free, remote MCP server that gives agents access to the web index. Search the web with ranked results and date/site filters, then fetch any indexed page as clean markdown. Works out of the box with no account or API key.
Free remote MCP server for fetching public web pages through a rotating proxy pool.
Related MCP Servers
- AlicenseAqualityDmaintenanceThis MCP server provides tools for interacting with Cloudflare Browser Rendering, allowing you to fetch and process web content for use as context in LLMs directly from Cline or Claude Desktop.511MIT
- FlicenseAqualityDmaintenanceWeb-crawler MCP server that fetches web pages with static parsing or headless browser fallback, enabling Claude to fetch, extract links, crawl sites, and select content via CSS selectors.4-
- AlicenseCqualityDmaintenanceAn MCP server that gives Claude Code real browser control for web automation, testing, and screenshots.3223 npm151MIT
- AlicenseAqualityCmaintenanceA lean, LLM-first browser automation MCP server that gives Claude (or any MCP client) a real Chromium browser to navigate, interact with, and debug web apps.149 npm6MIT