Jungle Scout
live EcommerceDataAmazon sales estimates, product database, and keyword search volume. BYO key.
Tools
junglescout_sales_estimate How many units does an Amazon ASIN sell — returns Jungle Scout estimated units sold, revenue, and price for a product ASIN. Example: junglescout_sales_estimate({ asin: "B08N5WRWNW", marketplace: "us",
No parameters required.
Try it
junglescout_product_database 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: jungle
No parameters required.
Try it
junglescout_keyword_data 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({ key
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/jungle-scout/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/jungle-scout/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"junglescout_sales_estimate","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("junglescout_sales_estimate", {}); // Or ask in plain English:
const answer = await px.ask("amazon sales estimates, product database, and keyword search volume"); Related packs
Other Pipeworx packs in the same categories (Ecommerce, Data):