seo_keyword_overview

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

Monthly search volume & difficulty for <keyword> — returns Google search volume, keyword difficulty (0-100), CPC, and competition for up to 10 keywords at once. Keyword research for SEO. Example: seo_keyword_overview({ keywords: [“running shoes”, “trail shoes”], location_code: 2840, _apiKey: “your-base64-key” })

Parameters

NameTypeRequiredDescription
keywordsarrayyesKeywords to look up (max 10), e.g. [“running shoes”, “trail shoes”]
itemsstringno
location_codeintegernoDataForSEO location code (default 2840 = United States)
language_codestringnoTwo-letter language code (default “en”)
_apiKeystringyesDataForSEO API key = base64(“login:password”) from your dataforseo.com account

Example call

Arguments

{
  "keywords": [
    "running shoes",
    "trail shoes"
  ],
  "location_code": 2840,
  "language_code": "en",
  "_apiKey": "your-seo-keywords-api-key"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('seo_keyword_overview', {
  "keywords": [
    "running shoes",
    "trail shoes"
  ],
  "location_code": 2840,
  "language_code": "en",
  "_apiKey": "your-seo-keywords-api-key"
});

More examples

{
  "keywords": [
    "best gaming laptop",
    "laptop for developers"
  ],
  "_apiKey": "your-seo-keywords-api-key"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 10, 2026