fast-webfetch-mcp
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., "@fast-webfetch-mcpfetch and summarize https://en.wikipedia.org/wiki/MCP"
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.
Fast WebFetch MCP Server for Claude Code
A high-performance MCP server for web fetching in Claude Code using Firecrawl backend with automatic fallback.
Features
Tool | Description |
| Fetch URL, extract content, return markdown |
| Return raw HTML without processing |
| Fetch and parse JSON endpoints |
| Fetch multiple URLs in parallel |
How It Works
Primary: Uses Firecrawl API for JS rendering and comment extraction
Fallback: If Firecrawl unavailable, uses direct fetch + Mozilla Readability
AI Summary: Optional summarization via local LLM API
URL -> Try Firecrawl -> Success? -> AI Summary (optional) -> Result
|
v (failed/unavailable)
Direct Fetch + Readability -> AI Summary (optional) -> Resultfast_fetch Parameters
Parameter | Type | Default | Description |
| string | required | The URL to fetch |
| string | - | AI summarization prompt |
| number | 100000 | Maximum content length (chars) |
| boolean | true | Include hyperlinks in output |
| boolean | false | Skip AI summarization even with prompt |
Related MCP server: crawler-mcp
Quick Install
Using Claude CLI (Recommended)
# Clone the repo
git clone https://github.com/nikketryhard/fast-webfetch-mcp.git ~/fast-webfetch-mcp
# Install dependencies
cd ~/fast-webfetch-mcp && bun install
# Add MCP server with environment variables
claude mcp add fast-webfetch \
-e FIRECRAWL_API_URL=http://localhost:3002 \
-e FAST_WEBFETCH_API_URL=http://127.0.0.1:8045/v1 \
-e FAST_WEBFETCH_MODEL=gemini-3-flash \
-e FAST_WEBFETCH_API_KEY=your_api_key_here \
-e FAST_WEBFETCH_USE_RUST=1 \
-e FAST_WEBFETCH_RUST_BIN=/home/YOUR_USERNAME/fast-webfetch-mcp/rust/target/release/fast-webfetch-mcp-rs \
-- bun run ~/fast-webfetch-mcp/src/index.ts
# Or minimal (uses defaults)
claude mcp add fast-webfetch -- bun run ~/fast-webfetch-mcp/src/index.tsManual Installation
# Clone the repo
git clone https://github.com/nikketryhard/fast-webfetch-mcp.git ~/fast-webfetch-mcp
# Install dependencies
cd ~/fast-webfetch-mcp && bun installThen add to ~/.claude.json:
{
"mcpServers": {
"fast-webfetch": {
"command": "bun",
"args": ["run", "/home/YOUR_USERNAME/fast-webfetch-mcp/src/index.ts"],
"env": {
"FIRECRAWL_API_URL": "http://localhost:3002",
"FAST_WEBFETCH_API_URL": "http://127.0.0.1:8045/v1",
"FAST_WEBFETCH_MODEL": "gemini-3-flash",
"FAST_WEBFETCH_API_KEY": "your_api_key_here",
"FAST_WEBFETCH_USE_RUST": "1",
"FAST_WEBFETCH_RUST_BIN": "/home/YOUR_USERNAME/fast-webfetch-mcp/rust/target/release/fast-webfetch-mcp-rs"
}
}
}
}Environment Variables
Variable | Default | Description |
|
| Firecrawl API endpoint |
|
| OpenAI-compatible API for summaries |
|
| Model name for summarization |
| (empty) | API key for summarization endpoint |
|
| Enable Rust backend worker path |
| (empty) | Absolute path to Rust binary |
Firecrawl Setup (Optional but Recommended)
For best results (JS rendering, comments extraction), run Firecrawl locally:
# Using Docker
docker run -p 3002:3002 mendableai/firecrawl
# Or use the official Firecrawl MCP
claude mcp add firecrawl-mcp -e FIRECRAWL_API_URL=http://localhost:3002 -- npx -y firecrawl-mcpWithout Firecrawl, the server falls back to direct fetch + Readability (no JS rendering).
Comparison with Native WebFetch
Feature | Native WebFetch | Fast WebFetch |
Reddit/Twitter | Blocked (403) | Works |
User agent | Claude-User (blocked) | Real browser UA |
JS rendering | No | Yes (with Firecrawl) |
Comments | No | Yes (with Firecrawl) |
Content | Haiku-summarized | Full markdown |
AI summary | Haiku 3.5 | Configurable model |
Max length | 100KB | Configurable |
Raw HTML | No | Yes |
JSON fetch | No | Yes |
Parallel fetch | No | Yes |
Fallback | None | Direct fetch |
Requirements
Bun runtime
Claude Code 2.0+
(Optional) Firecrawl for JS rendering
(Optional) OpenAI-compatible API for summarization
License
MIT
Contributing
PRs welcome! Please open an issue first to discuss changes.
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.
Latest Blog Posts
- 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/NikkeTryHard/fast-webfetch-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server