what is Scrapeless Mcp Server?
Scrapeless Mcp Server is a Model Context Protocol (MCP) server implementation that provides advanced search capabilities for AI assistants, enabling them to perform various search operations and retrieve data from sources like Google Search.
how to use Scrapeless Mcp Server?
To use Scrapeless Mcp Server, you need to register at Scrapeless, obtain an API key, and configure the server with your key. You can then perform searches by sending queries to the server.
key features of Scrapeless Mcp Server?
- Integration with Google Search for data retrieval.
- Customizable search parameters including country and language.
- Supports various AI assistants for enhanced search capabilities.
use cases of Scrapeless Mcp Server?
- Enabling AI assistants to fetch real-time data from Google.
- Performing complex searches with specific parameters.
- Assisting in research by summarizing search results.
FAQ from Scrapeless Mcp Server?
- How do I get started with Scrapeless Mcp Server?
Register at Scrapeless, generate your API key, and follow the setup guide to configure the server.
- What are the prerequisites for using Scrapeless Mcp Server?
You need Node.js 22 or higher and either NPM or Yarn to install the server.
- Can I use Scrapeless Mcp Server for any type of search?
Yes, you can use it for various types of searches by customizing the query parameters.
Scrapeless Mcp Server
Model Context Protocol (MCP) is an open protocol that enables seamless integration between LLM applications and external data sources and tools. MCP provides a standardized way to connect LLM with the required context, helping you efficiently enhance chat interfaces, build AI-driven IDEs, or create custom AI workflows.
Seamlessly integrate real-time Google SERP(Google Search, Google Flight, Google Map, Google Jobs....) results into your LLM applications using the Scrapeless MCP server. This server acts as a bridge between LLMs (like ChatGPT, Claude, etc.) and Scrapeless's Google SERP, enabling dynamic context retrieval for AI workflows, chatbots, and research tools.
👉 Live MCP Endpoint:
📦 NPM Package: scrapeless-mcp-server
Overview
This project provides several MCP servers that enable AI assistants like Claude to perform various search operations and retrieve data from:
- Google Search
Tools
1. Search Tool
- Name:
google-search
- Description: Search the web using Scrapeless
- Parameters:
query
(required): Parameter defines the query you want to search. You can use anything that you would use in a regular Google search. e.g. inurl:, site:, intitle:.gl
(optional, default: "us"): Parameter defines the country to use for the Google search. It's a two-letter country code. (e.g., us for the United States, uk for United Kingdom, or fr for France).hl
(optional, default: "en"): Parameter defines the language to use for the Google search. It's a two-letter language code. (e.g., en for English, es for Spanish, or fr for French).
Setup Guide
1. Get Scrapeless Key
- Register at Scrapeless
- Get your free trial
- Generate API Key
2. Configure
{
"mcpServers": {
"scrapelessMcpServer": {
"command": "npx",
"args": ["-y", "scrapeless-mcp-server"],
"env": {
"SCRAPELESS_KEY": "YOUR_SCRAPELESS_KEY"
}
}
}
}
Example Queries
Here are some examples of how to use these servers with Claude Desktop:
Google Search
Please search for "climate change solutions" and summarize the top results.
Installation
Prerequisites
- Node.js 22 or higher
- NPM or Yarn
Install from Source
- Clone the repository:
git clone https://github.com/scrapeless-ai/scrapeless-mcp-server.git
cd scrapeless-mcp-server
- Install dependencies:
npm install
- Build the server:
npm run build