scrapingbee_google
Pack: scrapingbee · Endpoint: https://gateway.pipeworx.io/scrapingbee/mcp
Scrape Google Search results via ScrapingBee’s Google SERP API. Returns structured JSON with organic results, AI overviews, local results, related searches, and more. Example: scrapingbee_google({ search: “best coffee grinder”, country_code: “us”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
search | string | yes | The Google search query, e.g. “best coffee grinder”. |
country_code | string | no | ISO 3166-1 alpha-2 country code to localize results (default “us”), e.g. “gb”, “de”. |
nb_results | number | no | Number of organic results to request (default 100). Lower values are faster. |
page | number | no | Result page number (default 1). |
language | string | no | Results language code (default “en”), e.g. “fr”, “es”. |
search_type | string | no | Type of search: “classic” (default), “news”, “maps”, “images”, or “shopping”. |
_apiKey | string | yes | Your ScrapingBee API key. |
Example call
curl -X POST https://gateway.pipeworx.io/scrapingbee/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"scrapingbee_google","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"scrapingbee": {
"url": "https://gateway.pipeworx.io/scrapingbee/mcp"
}
}
}
See Getting Started for client-specific install steps.