junglescout_product_database

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

Search Amazon products by keyword or category — returns matching ASINs with title, brand, price, rank, estimated units sold, reviews, and rating from the Jungle Scout product database. Example: junglescout_product_database({ keyword: “yoga mat”, marketplace: “us”, _apiKey: “KEY_NAME:API_KEY” })

Parameters

NameTypeRequiredDescription
keywordstringnoKeyword/phrase products must include, e.g. “yoga mat”
categorystringnoAmazon category to filter by, e.g. “Sports & Outdoors”. Pass keyword and/or category.
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_product_database","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_product_database', {
  "keyword": "yoga mat",
  "marketplace": "us",
  "_apiKey": "your-jungle-scout-api-key:sk_live_abc123def456"
});

More examples

{
  "category": "Sports & Outdoors",
  "marketplace": "de",
  "_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 18, 2026