oxylabs_google_search
Pack: oxylabs · Endpoint: https://gateway.pipeworx.io/oxylabs/mcp
Run a Google search through the Oxylabs Web Scraper API and return structured organic results (position, title, url, description) — Google structured scraping with geo-targeting. Calls are synchronous proxying and can take 10-30 seconds. BYOK: _apiKey is “username:password” from the Oxylabs dashboard. Example: oxylabs_google_search({ query: “best espresso machine”, geo_location: “United States”, _apiKey: “myuser:mypass” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | The Google search query, e.g. “best espresso machine 2026” |
geo_location | string | no | Geo location for localized results, e.g. “United States”, “London,England,United Kingdom”. Optional. |
pages | number | no | Number of result pages to fetch. Default 1. |
_apiKey | string | yes | Oxylabs API credentials as “username:password” from the Oxylabs dashboard (https://dashboard.oxylabs.io). Free trial includes up to 2K results. |
Example call
curl -X POST https://gateway.pipeworx.io/oxylabs/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"oxylabs_google_search","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"oxylabs": {
"url": "https://gateway.pipeworx.io/oxylabs/mcp"
}
}
}
See Getting Started for client-specific install steps.