seo_keyword_google_ads_volume
Pack: seo-keywords-ads · Endpoint: https://gateway.pipeworx.io/seo-keywords-ads/mcp
Exact Google Ads search volume for <keyword> — Google’s own monthly search-volume numbers (plus competition and CPC) from the Ads API, for up to 10 keywords. Use when you specifically need Google Ads figures; for general SEO volume + keyword difficulty, prefer seo_keyword_overview (cheaper). Example: seo_keyword_google_ads_volume({ keywords: [“running shoes”], location_code: 2840, _apiKey: “your-base64-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
keywords | array | yes | Keywords to look up (max 10), e.g. [“running shoes”, “trail shoes”] |
items | string | no | |
location_code | integer | no | DataForSEO location code (default 2840 = United States) |
language_code | string | no | Two-letter language code (default “en”) |
_apiKey | string | yes | DataForSEO API key = base64(“login:password”) from your dataforseo.com account |
Example call
Arguments
{
"keywords": [
"running shoes",
"trail shoes",
"athletic footwear"
],
"_apiKey": "your-seo-keywords-ads-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/seo-keywords-ads/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"seo_keyword_google_ads_volume","arguments":{"keywords":["running shoes","trail shoes","athletic footwear"],"_apiKey":"your-seo-keywords-ads-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('seo_keyword_google_ads_volume', {
"keywords": [
"running shoes",
"trail shoes",
"athletic footwear"
],
"_apiKey": "your-seo-keywords-ads-api-key"
});
More examples
{
"keywords": [
"digital marketing agency"
],
"location_code": 2840,
"language_code": "en",
"_apiKey": "your-seo-keywords-ads-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"seo-keywords-ads": {
"url": "https://gateway.pipeworx.io/seo-keywords-ads/mcp"
}
}
}
See Getting Started for client-specific install steps.