Scrape Amazon products, search, and async batch ASIN lookups across 20 marketplaces
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"amazon-scraper": {
"env": {
"ASA_API_KEY": "asa_live_..."
},
"args": [
"-y",
"amazon-scraper-api-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP (Model Context Protocol) server for Amazon Scraper API. Plugs into Claude Desktop, Cursor, Claude Code, Continue, or any MCP-compatible AI client. Gives your model live Amazon product data as a first-class tool call.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'amazon-scraper-api-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked amazon-scraper-api-mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ecommerce
Production-grade MCP server and CLI tool for Shopify Admin GraphQL API — 49+ tools, YAML-extensible, dual auth, dual transport, Docker-ready
A command line tool for setting up commercetools MCP server
35+ AI tools for TCG card grading, Monte Carlo pricing, 370K+ product search. BYOK.
This is the reference implementation for the mcp server
MCP Security Weekly
Get CVE alerts and security updates for io.github.ChocoData-com/amazon-scraper-api-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP (Model Context Protocol) server for Amazon Scraper API. Plugs into Claude Desktop, Cursor, Claude Code, Continue, or any MCP-compatible AI client. Gives your model live Amazon product data as a first-class tool call.
"Find me the highest-rated wireless earbuds under $150 on amazon.com, then check if they're cheaper on amazon.de"
That's one prompt. Without MCP, your AI can't fetch Amazon pages (Amazon blocks LLM browsing) and has zero recency for prices and stock. With this MCP server, it calls amazon_search + amazon_product directly and comes back with structured data from Amazon Scraper API.
| Tool | What it does | Typical use |
|---|---|---|
amazon_product | Fetch one product by ASIN or URL | "get price + rating for B09HN3Q81F" |
amazon_search | Keyword search with sort/filter | "top 10 cast iron skillets under $50" |
amazon_batch_create | Queue up to 1000 ASINs for async scrape | "scrape all 500 products in my catalog, webhook me when done" |
amazon_batch_status | Poll a batch's progress | "how much of batch xyz is done?" |
Each returns structured JSON: title, price, rating, reviews count, availability, buybox, variants, images, bullets, categories, spec tables.
| Metric | Value |
|---|---|
| Median latency (product, US) | ~2.6 s |
| P95 latency | ~6 s |
| Price / 1,000 requests | $0.50 flat |
| Marketplaces | 20+ |
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"amazon-scraper": {
"command": "npx",
"args": ["-y", "amazon-scraper-api-mcp"],
"env": {
"ASA_API_KEY": "asa_live_..."
}
}
}
}
Restart Claude Desktop. Tools appear under the MCP icon in the chat composer.
Settings → MCP → Add server:
npx -y amazon-scraper-api-mcpASA_API_KEY=asa_live_...claude mcp add amazon-scraper -- npx -y amazon-scraper-api-mcp
# then set ASA_API_KEY in the environment Claude Code runs in
You: What's the current price of AirPods Pro 3rd gen on amazon.com?
Claude: [calls
amazon_productwith ASIN B09HN3Q81F]The AirPods Pro 3rd gen are currently $199.00 on amazon.com, down from $249.00 (20% off). They have a 4.7-star rating from 58,214 reviews and are in stock, shipping from and sold by Amazon.com with Prime.
You: Compare that to the German Amazon listing.
Claude: [calls
amazon_productwithquery=B09HN3Q81F, domain=de]On amazon.de the same product is listed at 229.00 EUR. At today's exchange rate that's about $245, roughly 23% more than the US price. German listing ships from Amazon and qualifies for Prime delivery.
Generic browser tools that try to load amazon.com typically get blocked (robot check) or serve a mobile-stripped page. This server routes every call through Amazon Scraper API, which: