# Jungle Scout — how to use (mcp.ai)

Connect your Jungle Scout account and use 6 tools for ecommerce straight from your AI agent. Connect with your own API key. Jungle Scout assists Amazon sellers with product research, sales estimates, and competitive insights to optimize inventory, pricing, and listing strategies.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_junglescout?ms=1787293620000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `junglescout_keyword_historical_volume`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/junglescout`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/junglescout/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/junglescout/keyword/historical/volume` — Fetches the historical search volume data for a specified keyword over a given time period.
  - body: { keyword: string, end_date: string, start_date: string, marketplace: string }
- `POST https://api.mcp.ai/api/junglescout/query/the/product/database` — Queries the Jungle Scout product database to retrieve product data based on various filters. Compatible parameters include marketplace, sort, page_size, product_tiers, seller_types, categories, exclud
  - body: { sort?: string, max_lqs?: integer, max_net?: number, min_lqs?: integer, min_net?: number, max_rank?: integer, min_rank?: integer, max_price?: number, max_sales?: integer, min_price?: number, min_sales?: integer, page_size?: integer, categories: string[], max_rating?: number, max_weight?: number, min_rating?: number, min_weight?: number, marketplace: string, max_revenue?: number, max_reviews?: integer, max_sellers?: integer, min_revenue?: number, min_reviews?: integer, min_sellers?: integer, seller_types?: string[], product_tiers?: string[], max_updated_at?: string, min_updated_at?: string, exclude_keywords?: string[], include_keywords?: string[], exclude_top_brands?: boolean, exclude_unavailable_products?: boolean }
- `POST https://api.mcp.ai/api/junglescout/retrieve/data/for/a/specific/keyword/query` — Returns data based on a specific keyword query, including search volume and competition.
  - body: { sort?: string, page_size?: integer, categories: string[], marketplace: string, search_terms: string, max_word_count?: integer, min_word_count?: integer, max_organic_product_count?: integer, min_organic_product_count?: integer, max_monthly_search_volume_broad?: integer, max_monthly_search_volume_exact?: integer, min_monthly_search_volume_broad?: integer, min_monthly_search_volume_exact?: integer }
- `POST https://api.mcp.ai/api/junglescout/retrieve/keyword/data/for/specified/asins` — Returns keywords for which the queried ASIN(s) appear in Amazon search results. For a given keyword, Jungle Scout collects up to 3 pages of Amazon keyword search results. Query up to 10 ASINs at a tim
  - body: { sort?: string, page_size?: integer, marketplace: string, page_number?: integer, data_attributes_asins: string[], data_attributes_max_word_count?: integer, data_attributes_min_word_count?: integer, data_attributes_include_variants?: boolean, data_attributes_max_organic_product_count?: integer, data_attributes_min_organic_product_count?: integer, data_attributes_max_monthly_search_volume_broad?: integer, data_attributes_max_monthly_search_volume_exact?: integer, data_attributes_min_monthly_search_volume_broad?: integer, data_attributes_min_monthly_search_volume_exact?: integer }
- `POST https://api.mcp.ai/api/junglescout/retrieve/sales/estimates/data` — Fetches sales estimates data for specified parameters.
  - body: { asin: string, end_date: string, start_date: string, marketplace: string }
- `POST https://api.mcp.ai/api/junglescout/retrieve/share/of/voice/data` — Fetches share of voice data for specified keywords.
  - body: { keyword: string, marketplace: string }

## Example prompts
- "What can I do in Jungle Scout?"
- "Show me a summary of my Jungle Scout account"

## More
- Page: https://mcp.ai/junglescout
- Agent spec (llms.txt): https://mcp.ai/junglescout/llms.txt
- Postman collection: https://mcp.ai/junglescout/postman.json
