by apify
MCP server implementing the RAG Web Browser Actor — a web browsing/search tool for LLMs and RAG pipelines, enabling web-
Implementation of an MCP server for the RAG Web Browser Actor. This Actor serves as a web browser for large language models (LLMs) and RAG pipelines, similar to a web search in ChatGPT.
mcp-server-rag-web-browser is an official MCP server published by apify that provides AI assistants with tools and capabilities via the Model Context Protocol. MCP server implementing the RAG Web Browser Actor — a web browsing/search tool for LLMs and RAG pipelines, enabling web- It is categorized under search web.
You can install mcp-server-rag-web-browser 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.
Apache-2.0
mcp-server-rag-web-browser is released under the Apache-2.0 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
mcp-server-rag-web-browser is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
I recommend mcp-server-rag-web-browser for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Strong directory entry: mcp-server-rag-web-browser surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Strong directory entry: mcp-server-rag-web-browser surfaces stars and publisher context so we could sanity-check maintenance before adopting.
We evaluated mcp-server-rag-web-browser against two servers with overlapping tools; this profile had the clearer scope statement.
According to our notes, mcp-server-rag-web-browser benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Useful MCP listing: mcp-server-rag-web-browser is the kind of server we cite when onboarding engineers to host + tool permissions.
I recommend mcp-server-rag-web-browser for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
mcp-server-rag-web-browser is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
We wired mcp-server-rag-web-browser into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
showing 1-10 of 29
Implementation of an MCP server for the RAG Web Browser Actor. This Actor serves as a web browser for large language models (LLMs) and RAG pipelines, similar to a web search in ChatGPT.
This MCP server is deprecated in favor of mcp.apify.com
For the same functionality and much more, please use one of these alternatives:
The easiest way to get the same web browsing capabilities is to use mcp.apify.com with default settings.
Benefits:
Quick Setup:
You can also call the RAG Web Browser Actor directly via its HTTP/SSE interface.
Benefits:
Docs: Actor Documentation
This server is specifically designed to provide fast responses to AI agents and LLMs, allowing them to interact with the web and extract information from web pages. It runs locally and communicates with the RAG Web Browser Actor in Standby mode, sending search queries and receiving extracted web content in response.
search
description: Query Google Search OR fetch a direct URL and return cleaned page contents.
arguments:
query (string, required): Search keywords or a full URL. Advanced Google operators supported.maxResults (number, optional, default: 1): Max organic results to fetch (ignored when query is a URL).scrapingTool (string, optional, default: raw-http): One of browser-playwright | raw-http.
raw-http: Fast (no JS execution) – good for static pages.browser-playwright: Handles JS-heavy sites – slower, more robust.outputFormats (array of strings, optional, default: [markdown]): One or more of text, markdown, html.requestTimeoutSecs (number, optional, default: 40, min 1 max 300): Total server-side AND client wait budget. A local abort is enforced.Before (Deprecated local server):
{
"mcpServers": {
"rag-web-browser": {
"command": "npx",
"args": ["@apify/mcp-server-rag-web-browser"],
"env": {
"APIFY_TOKEN": "your-apify-api-token"
}
}
}
}
After (Recommended Apify server):
{
"mcpServers": {
"apify": {
"command": "npx",
"args": ["@apify/actors-mcp-server"],
"env": {
"APIFY_TOKEN": "your-apify-api-token"
}
}
}
}
Or use the hosted endpoint: https://mcp.apify.com (when your client supports HTTP transport / remote MCP).
APIFY_TOKEN)Clone & install:
git clone https://github.com/apify/mcp-server-rag-web-browser.git
cd mcp-server-rag-web-browser
npm install
npm install
npm run build
Since MCP servers operate over standard input/output (stdio), debugging can be challenging. For the best debugging experience, use the MCP Inspector.
You can launch the MCP Inspector via npm with this command:
export APIFY_TOKEN=your-apify-api-token
npx @modelcontextprotocol/inspector node dist/index.js
Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.
This repository is maintained for archival purposes only. Please use the recommended alternatives above for active development.
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.