Loading...

This MCP server enables AI agents to browse the web via the RAG Web Browser Actor, fetching and extracting content from web pages based on search queries or URLs.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
This MCP server enables AI agents to browse the web via the RAG Web Browser Actor, fetching and extracting content from web pages based on search queries or URLs.
This MCP server is relatively safe for read-only web browsing. However, the ability to fetch arbitrary URLs and execute JavaScript introduces some risk. Ensure proper input validation and content sanitization to mitigate potential threats.
Performance depends on the speed of the RAG Web Browser Actor and the target websites. Consider using the raw-http scraping tool for faster performance on static pages.
Costs are associated with Apify's platform usage, including actor execution time and data storage. Be mindful of the number of requests and the size of the extracted content.
npm install
npm run build{
"mcpServers": {
"rag-web-browser": {
"command": "npx",
"args": ["@apify/mcp-server-rag-web-browser"],
"env": {
"APIFY_TOKEN": "your-apify-api-token"
}
}
}
}APIFY_TOKENsearchQueries Google or fetches a URL, returning cleaned page content.
Can fetch arbitrary URLs and execute JavaScript, potentially exposing the agent to malicious content.
API Key
hybrid
This MCP server is relatively safe for read-only web browsing. However, the ability to fetch arbitrary URLs and execute JavaScript introduces some risk. Ensure proper input validation and content sanitization to mitigate potential threats.
The agent can autonomously browse the web and extract information, but it cannot perform any destructive actions.
Production Tip
Monitor Apify task usage and set appropriate request timeouts to prevent resource exhaustion.
You need to provide an Apify API token via the `APIFY_TOKEN` environment variable.
You can choose between `browser-playwright` (for JS-heavy sites) and `raw-http` (for faster scraping of static pages).
Use the `maxResults` argument to specify the maximum number of organic results to fetch.
The server supports `text`, `markdown`, and `html` output formats.
Errors are propagated back to the client via standard error. Implement error handling in your client application.
Yes, but you need to configure the RAG Web Browser Actor to handle authentication.
This MCP server is deprecated. It is recommended to use mcp.apify.com or integrate directly with the RAG Web Browser Actor.