MCP server
by scrapeless-ai
Access the Scrapeless Google Search API for customizable queries by text, country, or language. Easily integrate with cu
Connects AI models to Google Search through the Scrapeless API, allowing programmatic search queries with customizable parameters like location and language.
Scrapeless (Google Search) is an official MCP server published by scrapeless-ai that provides AI assistants with tools and capabilities via the Model Context Protocol. Access the Scrapeless Google Search API for customizable queries by text, country, or language. Easily integrate with cu It is categorized under search web.
You can install Scrapeless (Google Search) 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
Scrapeless (Google Search) 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
Scrapeless (Google Search) reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Scrapeless (Google Search) has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Scrapeless (Google Search) is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Useful MCP listing: Scrapeless (Google Search) is the kind of server we cite when onboarding engineers to host + tool permissions.
Strong directory entry: Scrapeless (Google Search) surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Scrapeless (Google Search) has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
I recommend Scrapeless (Google Search) for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Scrapeless (Google Search) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
I recommend Scrapeless (Google Search) for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
According to our notes, Scrapeless (Google Search) benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
showing 1-10 of 40

Welcome to the official Scrapeless Model Context Protocol (MCP) Server — a powerful integration layer that empowers LLMs, AI Agents, and AI applications to interact with the web in real time.
Built on the open MCP standard, Scrapeless MCP Server seamlessly connects models like ChatGPT, Claude, and tools like Cursor and Windsurf to a wide range of external capabilities, including:
Whether you're building an AI research assistant, a coding copilot, or autonomous web agents, this server provides the dynamic context and real-world data your workflows need—without getting blocked.
Using Scrapeless MCP Browser, Claude can perform complex tasks such as web navigation, clicking, scrolling, and scraping through conversational commands, with real-time preview of web interaction results via live sessions.

Using the Scrapeless MCP Browser service, the Cloudflare page is automatically accessed, and after the process is completed, the page content is extracted and returned in Markdown format.

Using the Scrapeless MCP Universal API, the JavaScript-rendered content of the target page above is scraped, exported in Markdown format, and finally written to a local file named text.md.

Using the Scrapeless MCP Server, query the keyword “web scraping” on Google Search, retrieve the first 10 search results (including title, link, and summary), and write the content to the file named serp.text.

Here are some additional examples of how to use these servers:
| Example |
|---|
| Search scrapeless by Google search. |
| Find the search interest for "AI" over the last year. |
| Use a browser to visit chatgpt.com, search for "What's the weather like today?", and summarize the results. |
| Scrape the HTML content of scrapeless.com page. |
| Scrape the Markdown content of scrapeless.com page. |
| Get screenshots of scrapeless.com. |

Scrapeless MCP Server supports both Stdio and Streamable HTTP transport modes.
🖥️ Stdio (Local Execution)
{
"mcpServers": {
"Scrapeless MCP Server": {
"command": "npx",
"args": ["-y", "scrapeless-mcp-server"],
"env": {
"SCRAPELESS_KEY": "YOUR_SCRAPELESS_KEY"
}
}
}
}
🌐 Streamable HTTP (Hosted API Mode)
{
"mcpServers": {
"Scrapeless MCP Server": {
"type": "streamable-http",
"url": "https://api.scrapeless.com/mcp",
"headers": {
"x-api-token": "YOUR_SCRAPELESS_KEY"
},
"disabled": false,
"alwaysAllow": []
}
}
}
Customize browser session behavior with optional parameters. These can be set via environment variables (for Stdio) or HTTP headers (for Streamable HTTP):
| Stdio (Env Var) | Streamable HTTP (HTTP Header) | Description |
|---|---|---|
| BROWSER_PROFILE_ID | x-browser-profile-id | Specifies a reusable browser profile ID for session continuity. |
| BROWSER_PROFILE_PERSIST | x-browser-profile-persist | Enables persistent storage for cookies, local storage, etc. |
| BROWSER_SESSION_TTL | x-browser-session-ttl | Defines the maximum session timeout in seconds. The session will automatically expire after this duration of inactivity. |
Settings → Tools → MCP ServersStdio or Streamable HTTP config aboveCmd + Shift + P and search for: Configure MCP Servers"Search StackOverflow for a solution to this error""Scrape the HTML from this page"| Name | Description |
|---|---|
| google_search | Universal information search engine. |
| google_trends | Get trending search data from Google Trends. |
| browser_create | Create or reuse a cloud browser session using Scrapeless. |
| browser_close | Closes the current session by disconnecting the cloud browser. |
| browser_goto | Navigate browser to a specified URL. |
| browser_go_back | Go back one step in browser history. |
| browser_go_forward | Go forward one step in browser history. |
| browser_click | Click a specific element on the page. |
| browser_type | Type text into a specified input field. |
| browser_press_key | Simulate a key press. |
| browser_wait_for | Wait for a specific page element to appear. |
| browser_wait | Pause execution for a fixed duration. |
| browser_screenshot | Capture a screenshot of the current page. |
| browser_get_html | Get the full HTML of the current page. |
| browser_get_text | Get all visible text from the current page. |
| browser_scroll | Scroll to the bottom of the page. |
| browser_scroll_to | Scroll a specific element into view. |
| scrape_html | Scrape a URL and return its full HTML content. |
| scrape_markdown | Scrape a URL and return its content as Markdown. |
| scrape_screenshot | Capture a high-quality screenshot of any webpage. |
When using Scrapeless MCP Server with LLMs (like ChatGPT, Claude, or Cursor), it's critical to handle all scraped or extracted web content with care. Web data is untrusted by default, and improper handling may expose your application to prompt injection or other security vulnerabilities.
scrape_html, scrape_markdown, or targeted browser_get_text with known-safe selectors to extract only the content you trust.For questions, suggestions, or collaboration inquiries, feel free to contact us via:
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.