scraperapi_google_search

Pack: scraperapi · Endpoint: https://gateway.pipeworx.io/scraperapi/mcp

Run a Google search and get structured SERP results — organic results, titles, links, snippets, and related data.

Parameters

NameTypeRequiredDescription
querystringyesThe Google search query, e.g. “best running shoes 2026”
country_codestringnoTwo-letter country code for geotargeting the search, e.g. “us”. Optional.
tldstringnoGoogle top-level domain, e.g. “com”, “co.uk”. Optional (default com).
_apiKeystringyesScraperAPI key

Example call

Arguments

{
  "query": "best running shoes 2026",
  "_apiKey": "your-scraperapi-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/scraperapi/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"scraperapi_google_search","arguments":{"query":"best running shoes 2026","_apiKey":"your-scraperapi-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('scraperapi_google_search', {
  "query": "best running shoes 2026",
  "_apiKey": "your-scraperapi-api-key"
});

More examples

{
  "query": "machine learning tutorials",
  "country_code": "us",
  "tld": "com",
  "_apiKey": "your-scraperapi-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "scraperapi": {
      "url": "https://gateway.pipeworx.io/scraperapi/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 29, 2026