Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
ChocoData-com avatar

Amazon Scraper API

  • 1 repo stars
  • Updated June 2, 2026
  • ChocoData-com/amazon-scraper-api-mcp

Amazon Scraper API MCP is a MCP server that scrapes Amazon products, search results, and batch ASINs across 20 marketplaces via the ASA API.

About

Amazon Scraper API MCP connects your coding agent to ChocoData’s Amazon Scraper API through Model Context Protocol so you can research products and competitors without hand-writing scrape scripts. developers evaluating ecommerce niches, repricing tools, or content sites that cite Amazon data can ask the agent to search categories, fetch ASIN details, and run batch lookups asynchronously while staying inside Claude Code or Cursor. The server is intentionally task-focused: stdio npm package, one secret environment variable, and marketplace breadth as the main leverage. It sits in the Idea phase on the competitors shelf because the payoff is faster validation—not running a production storefront. You will need an API key from app.amazonscraperapi.com; the README documents a 1000-request free tier to de-risk early research. Intermediate complexity reflects external API billing, rate limits, and responsible use of marketplace data.

  • Amazon Scraper API MCP v0.1.4 with stdio npm transport
  • Product scrape, keyword search, and async batch ASIN lookups
  • Coverage across 20 Amazon marketplaces from one MCP integration
  • ASA_API_KEY required; vendor offers 1000 free requests without a credit card
  • Fits agent-driven niche research and listing teardown workflows

Amazon Scraper API by the numbers

  • Data as of Jul 10, 2026 (Skillselion catalog sync)
terminal
claude mcp add --env ASA_API_KEY=YOUR_ASA_API_KEY amazon-scraper-api-mcp -- npx -y amazon-scraper-api-mcp

Add your badge

Show developers this MCP server is listed on Skillselion. Paste this into your README.

Listed on Skillselion
repo stars1
Packageamazon-scraper-api-mcp
TransportSTDIO
AuthRequired
Last updatedJune 2, 2026
RepositoryChocoData-com/amazon-scraper-api-mcp

What it does

Pull live Amazon product, search, and batch ASIN data across marketplaces while validating an ecommerce or Amazon-adjacent idea.

Who is it for?

Best when you're doing Amazon competitor and pricing research with Claude Code or Cursor.

Skip if: Skip if you have no Amazon angle, or teams that need official SP-API seller integrations rather than scraper-backed research.

What you get

After registration, your agent can query product and search endpoints and run async batch ASIN jobs through MCP tools instead of one-off scripts.

  • MCP tools for Amazon product fetch, search, and batch ASIN workflows
  • Structured marketplace data usable in validation spreadsheets or specs
  • Agent-callable research without maintaining custom scrape infrastructure

By the numbers

  • 20 Amazon marketplaces supported
  • 1000 free API requests advertised (no credit card)
  • Server version 0.1.4, npm package amazon-scraper-api-mcp
README.md

amazon-scraper-api-mcp

npm npm downloads license Glama MCP server

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.

What it unlocks

"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.

Tools exposed

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.

Benchmark (live production, 2026-04)

Metric Value
Median latency (product, US) ~2.6 s
P95 latency ~6 s
Price / 1,000 requests $0.50 flat
Marketplaces 20+

Claude Desktop setup

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.

Cursor setup

Settings → MCPAdd server:

  • Command: npx -y amazon-scraper-api-mcp
  • Env: ASA_API_KEY=asa_live_...

Claude Code setup

claude mcp add amazon-scraper -- npx -y amazon-scraper-api-mcp
# then set ASA_API_KEY in the environment Claude Code runs in

Example conversation (Claude Desktop)

You: What's the current price of AirPods Pro 3rd gen on amazon.com?

Claude: [calls amazon_product with 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_product with query=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.

Why this vs. a generic "browse the web" MCP

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:

  • Detects and retries robot/CAPTCHA pages through escalating proxy tiers
  • Returns structured JSON (typed fields), not HTML soup
  • Supports 20+ marketplaces with country-matched residential IPs
  • Handles batch (hundreds to thousands of ASINs) with webhook delivery
  • Built-in rate-limit backoff

Error handling

Errors are surfaced to the model as tool errors with a code field and a hint. The model then decides whether to retry or abandon the sub-task. You don't have to write error-handling logic yourself.

Common codes: INVALID_API_KEY, INSUFFICIENT_CREDITS, RATE_LIMITED, target_unreachable, amazon-robot-or-human, extraction_failed, SERVICE_OVERLOADED. Full table: amazonscraperapi.com/docs/errors.

Get an API key

app.amazonscraperapi.com. 1,000 free requests on signup, no credit card required. Enough to test every tool this MCP exposes plus a few dozen productive chats.

Links

License

MIT

Recommended MCP Servers

How it compares

MCP-backed marketplace scraper API, not an Amazon Seller Central admin skill.

FAQ

Who is Amazon Scraper API MCP for?

Developers and small teams researching Amazon products, niches, and competitors through an MCP-enabled coding agent.

When should I use Amazon Scraper API MCP?

Use it during idea and competitor research when you need search, product pages, or batch ASIN data across multiple Amazon marketplaces.

How do I add Amazon Scraper API MCP to my agent?

Install amazon-scraper-api-mcp from npm, set ASA_API_KEY in the MCP server environment, and add the stdio server block in Claude Code or Cursor.

Web & Browser Automationecommercepricing

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.