webfetch-camouflage
MCP server for fetching web content with browser fingerprint camouflage, converting HTML to clean Markdown to bypass bot detection.
README
webfetch-camouflage-mcp

Webfetch Camouflage is an MCP server for fetching web content with browser camouflage using curl_cffi. It mimics real browser TLS/HTTP2 fingerprints to bypass bot detection, returning clean Markdown output converted from HTML.
Installation
<details> <summary>Cursor</summary>
Add to .cursor/mcp.json:
{
"mcpServers": {
"webfetch-camouflage": {
"command": "uvx",
"args": ["git+https://github.com/tianhuil/webfetch-camouflage-mcp.git"]
}
}
}
</details>
<details> <summary>Claude Code</summary>
claude mcp add-json webfetch-camouflage '{"command":"uvx","args":["git+https://github.com/tianhuil/webfetch-camouflage-mcp.git"]}'
</details>
<details> <summary>VSCode</summary>
code --add-mcp '{"name":"webfetch-camouflage","command":"uvx","args":["git+https://github.com/tianhuil/webfetch-camouflage-mcp.git"]}'
</details>
<details> <summary>Gemini CLI</summary>
gemini mcp add webfetch-camouflage uvx -- git+https://github.com/tianhuil/webfetch-camouflage-mcp.git
</details>
<details> <summary>Codex CLI</summary>
codex mcp add webfetch-camouflage -- uvx git+https://github.com/tianhuil/webfetch-camouflage-mcp.git
</details>
<details> <summary>Opencode</summary>
Add to opencode.json:
macOS/Linux: ~/.local/share/opencode/opencode.json
Windows: %LOCALAPPDATA%\opencode\opencode.json
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"webfetch-camouflage": {
"type": "local",
"command": ["uvx", "git+https://github.com/tianhuil/webfetch-camouflage-mcp.git"],
"enabled": true
}
}
}
</details>
Tool reference
The fetch_url tool accepts:
url(required): URL to fetchimpersonate(optional, default"chrome"): browser profile to impersonatetimeout(optional, default10): request timeout in secondsmax_chars(optional): maximum characters to return; truncates with...if set
Supported impersonation profiles:
- Chrome:
chrome99,chrome100,chrome101,chrome104,chrome107,chrome110,chrome116,chrome119,chrome120,chrome123,chrome124,chrome131,chrome133a,chrome136 - Firefox:
firefox133,firefox135 - Safari:
safari153,safari155,safari170,safari180,safari184,safari260 - Edge:
edge99,edge101,edge133,edge135
Notes on Development
Setup
git clone https://github.com/tianhuil/webfetch-camouflage-mcp.git
cd webfetch-camouflage-mcp
uv sync
Running the server
uv run webfetch-camouflage-mcp
Available tasks
poe test # Run tests
poe lint # Lint code
poe format # Format code
poe typecheck # Type check
uv run pip-audit # Security audit
MCP server testing
Test the server directly via JSON-RPC:
echo '{"jsonrpc": "2.0", "id": 1, "method": "initialize", "params": {"protocolVersion": "2024-11-05", "capabilities": {}, "clientInfo": {"name": "test", "version": "1.0"}}}' | uv run webfetch-camouflage-mcp
echo '{"jsonrpc": "2.0", "id": 1, "method": "initialize", "params": {"protocolVersion": "2024-11-05", "capabilities": {}, "clientInfo": {"name": "test", "version": "1.0"}}}' | uvx git+https://github.com/tianhuil/webfetch-camouflage-mcp.git
Or use the helper script:
uv run python src/get_tool_details.py
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.