junglescout_keyword_data

Pack: jungle-scout · Endpoint: https://gateway.pipeworx.io/jungle-scout/mcp

Amazon keyword search volume — returns monthly search volume and keyword metrics for a keyword, or the top keywords an ASIN ranks for. Pass keyword OR asin. Example: junglescout_keyword_data({ keyword: “yoga mat”, marketplace: “us”, _apiKey: “KEY_NAME:API_KEY” })

Parameters

NameTypeRequiredDescription
keywordstringnoSeed keyword to look up search volume for, e.g. “yoga mat”
asinstringnoAlternatively, an ASIN — returns the keywords that product ranks for
marketplacestringnoMarketplace country code (default “us”)
_apiKeystringyesJungle Scout credential “KEY_NAME:API_KEY”

Example call

Arguments

{
  "keyword": "yoga mat",
  "marketplace": "us",
  "_apiKey": "your-jungle-scout-api-key:sk_live_abc123def456"
}

curl

curl -X POST https://gateway.pipeworx.io/jungle-scout/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"junglescout_keyword_data","arguments":{"keyword":"yoga mat","marketplace":"us","_apiKey":"your-jungle-scout-api-key:sk_live_abc123def456"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('junglescout_keyword_data', {
  "keyword": "yoga mat",
  "marketplace": "us",
  "_apiKey": "your-jungle-scout-api-key:sk_live_abc123def456"
});

More examples

{
  "asin": "B08N5WRWNW",
  "marketplace": "us",
  "_apiKey": "your-jungle-scout-api-key:sk_live_abc123def456"
}

Connect

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

{
  "mcpServers": {
    "jungle-scout": {
      "url": "https://gateway.pipeworx.io/jungle-scout/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 19, 2026