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

NameTypeRequiredDescription
querystringyesThe Google search query, e.g. “best espresso machine 2026”
geo_locationstringnoGeo location for localized results, e.g. “United States”, “London,England,United Kingdom”. Optional.
pagesnumbernoNumber of result pages to fetch. Default 1.
_apiKeystringyesOxylabs API credentials as “username:password” from the Oxylabs dashboard (https://dashboard.oxylabs.io). Free trial includes up to 2K results.

Example call

Arguments

{
  "query": "best espresso machine 2026",
  "_apiKey": "your-oxylabs-username:your-oxylabs-password"
}

curl

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":{"query":"best espresso machine 2026","_apiKey":"your-oxylabs-username:your-oxylabs-password"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('oxylabs_google_search', {
  "query": "best espresso machine 2026",
  "_apiKey": "your-oxylabs-username:your-oxylabs-password"
});

More examples

{
  "query": "restaurants near me",
  "geo_location": "London,England,United Kingdom",
  "pages": 2,
  "_apiKey": "your-oxylabs-username:your-oxylabs-password"
}

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.

Regenerated from source · build August 29, 2026