by xxxbrian
Advanced web scraper lets LLMs bypass anti-bot protection using HTTP requests, ideal for web scraping tools like Octopar
Makes HTTP requests with realistic browser emulation to bypass anti-bot measures and convert web content to Markdown for LLM processing.
HTTP Request is a community-built MCP server published by xxxbrian that provides AI assistants with tools and capabilities via the Model Context Protocol. Advanced web scraper lets LLMs bypass anti-bot protection using HTTP requests, ideal for web scraping tools like Octopar It is categorized under browser automation, search web.
You can install HTTP Request in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
HTTP Request is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Fetch and extract information from websites automatically
Example
Research competitor pricing, scrape product reviews, monitor news mentions
Automate 5-10 hours/week of manual web research
Track website changes, new content, price updates
Example
Monitor competitor blog for new posts, track stock availability, watch for pricing changes
Stay informed without manual checking, never miss important updates
Extract structured data from multiple websites
Example
Compile product listings from 10 e-commerce sites, aggregate job postings, collect real estate data
Build datasets 100x faster than manual copying
Share your MCP server with the developer community
HTTP Request is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
According to our notes, HTTP Request benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
We evaluated HTTP Request against two servers with overlapping tools; this profile had the clearer scope statement.
HTTP Request has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
We evaluated HTTP Request against two servers with overlapping tools; this profile had the clearer scope statement.
We wired HTTP Request into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
HTTP Request is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
According to our notes, HTTP Request benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
HTTP Request has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
We wired HTTP Request into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
showing 1-10 of 69
A Model Context Protocol (MCP) server that provides advanced HTTP request capabilities for Claude and other LLMs. Built on rquest, this server enables realistic browser emulation with accurate TLS/JA3/JA4 fingerprints, allowing models to interact with websites more naturally and bypass common anti-bot measures. It also supports converting PDF and HTML documents to Markdown for easier processing by LLMs.
HTTP Request Tools:
http_get - Perform GET requests with optional parametershttp_post - Submit data via POST requestshttp_put - Update resources with PUT requestshttp_delete - Remove resources with DELETE requestshttp_patch - Partially update resourceshttp_head - Retrieve only headers from a resourcehttp_options - Retrieve options for a resourcehttp_trace - Diagnostic request tracingResponse Handling Tools:
get_stored_response - Retrieve stored large responses, optionally by line rangeget_stored_response_with_markdown - Convert HTML or PDF responses to Markdown format for better LLM processingget_model_state - Get the current state of the PDF models loading processrestart_model_loading - Restart the PDF models loading process if it failed or got stuckmcp-rquest now supports PDF to Markdown conversion, allowing you to download PDF files and convert them to Markdown format that's easy for LLMs to process:
get_stored_response_with_markdown tool works for both HTML and PDF filesWhen using uv no specific installation is needed. We will
use uvx to directly run mcp-rquest.
Alternatively you can install mcp-rquest via pip:
pip install mcp-rquest
After installation, you can run it as a script using:
python -m mcp_rquest
Add to your Claude settings:
Using uvx:
{
"mcpServers": {
"http-rquest": {
"command": "uvx",
"args": ["mcp-rquest"]
}
}
}
Using pip:
{
"mcpServers": {
"http-rquest": {
"command": "python",
"args": ["-m", "mcp_rquest"]
}
}
}
Using pipx:
{
"mcpServers": {
"http-rquest": {
"command": "pipx",
"args": ["run", "mcp-rquest"]
}
}
}
</details>
mcp-rquest leverages rquest's powerful browser emulation capabilities to provide realistic browser fingerprints, which helps bypass bot detection and access content normally available only to standard browsers. Supported browser fingerprints include:
This ensures that requests sent through mcp-rquest appear as legitimate browser traffic rather than bot requests.
uv venv
# Unix/macOS
source .venv/bin/activate
# Windows
.venv\Scripts\activate
uv pip install -e ".[dev]"
Interact with services that don't offer APIs
Example
Check form submissions, validate website functionality, test user flows
Automate interactions with any website, even without API
Prerequisites
Time Estimate
20-40 minutes including configuration and testing
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
MCP server handles HTTP requests, HTML parsing, JavaScript rendering (if headless browser), and returns structured data to Claude.
Protocols
Compatibility
✓ Use when
Use for research automation, content monitoring, data aggregation from multiple sources, and when official APIs don't exist. Best for read-only information gathering.
✗ Avoid when
Avoid for sites with APIs (use API instead), sites that explicitly forbid scraping, when data is copyrighted, or for login-required content without proper authorization.