seo_serp_google

Pack: seo-serp · Endpoint: https://gateway.pipeworx.io/seo-serp/mcp

Who ranks for <term> on Google — live organic search results (rank, title, domain, URL, snippet) for a keyword in a given country. SEO rank-tracking and SERP analysis. Example: seo_serp_google({ keyword: “best running shoes”, location_code: 2840, _apiKey: “your-base64-key” })

Parameters

NameTypeRequiredDescription
keywordstringyesSearch query to look up, e.g. “best running shoes”
location_codeintegernoDataForSEO location code (default 2840 = United States). e.g. 2826 = UK, 2124 = Canada.
language_codestringnoTwo-letter language code (default “en”)
depthintegernoNumber of organic results to return (default 10, max 20)
_apiKeystringyesDataForSEO API key = base64(“login:password”) from your dataforseo.com account

Example call

Arguments

{
  "keyword": "best running shoes",
  "location_code": 2840,
  "language_code": "en",
  "depth": 10,
  "_apiKey": "your-seo-serp-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/seo-serp/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"seo_serp_google","arguments":{"keyword":"best running shoes","location_code":2840,"language_code":"en","depth":10,"_apiKey":"your-seo-serp-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('seo_serp_google', {
  "keyword": "best running shoes",
  "location_code": 2840,
  "language_code": "en",
  "depth": 10,
  "_apiKey": "your-seo-serp-api-key"
});

More examples

{
  "keyword": "machine learning courses",
  "location_code": 2826,
  "_apiKey": "your-seo-serp-api-key"
}

Connect

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

{
  "mcpServers": {
    "seo-serp": {
      "url": "https://gateway.pipeworx.io/seo-serp/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 10, 2026