decodo_google_search

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

Google search results scraping via Decodo (formerly Smartproxy) — runs a Google search through rotating proxies and

Parameters

NameTypeRequiredDescription
querystringyesThe Google search query, e.g. “best running shoes 2026”
geostringnoLocation name to geotarget the search, e.g. “United States”, “United Kingdom”. Optional.
localestringnoLanguage code for the Google interface, e.g. “en-US”, “de-DE”. Optional.
page_countnumbernoNumber of result pages to retrieve (1-10). Default 1.
_apiKeystringyesDecodo Web Scraping API credentials as “username:password” (from https://dashboard.decodo.com).

Example call

Arguments

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

curl

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "query": "machine learning frameworks",
  "geo": "United Kingdom",
  "locale": "en-GB",
  "page_count": 2,
  "_apiKey": "your-decodo-api-key"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 29, 2026