JSPM

@pullapi/amazon-scraper-mcp

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q38552F
  • License MIT

Amazon MCP server — product search, details, reviews & bestsellers. For Claude, Cursor & AI agents.

Package Exports

  • @pullapi/amazon-scraper-mcp
  • @pullapi/amazon-scraper-mcp/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@pullapi/amazon-scraper-mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Amazon Scraper MCP Server

An MCP server that provides real-time Amazon data — search products, get full details with pricing and specs, read customer reviews, and browse bestsellers — for use with Claude, Cursor, and other MCP-compatible AI tools.

Features

  • Get Product — Get full Amazon product details including price, rating, features, images, and specifications
  • Search Products — Search Amazon products by keyword
  • Get Reviews — Get customer reviews for an Amazon product
  • Get Bestsellers — Get Amazon bestseller products, optionally filtered by category

Tools

get_product

Get full Amazon product details including price, rating, features, images, and specifications

Parameters:

Name Type Required Description
asin string Yes Amazon Standard Identification Number (ASIN)

search_products

Search Amazon products by keyword

Parameters:

Name Type Required Description
query string Yes Search query
page number No Page number for pagination (default: 1)

get_reviews

Get customer reviews for an Amazon product

Parameters:

Name Type Required Description
asin string Yes Amazon ASIN

get_bestsellers

Get Amazon bestseller products, optionally filtered by category

Parameters:

Name Type Required Description
category string No Category name to filter bestsellers

Configuration

Get your API key from RapidAPI.

Usage with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "amazon": {
      "command": "npx",
      "args": ["-y", "@pullapi/amazon-scraper-mcp"],
      "env": {
        "RAPIDAPI_KEY": "your-rapidapi-key"
      }
    }
  }
}

Usage with Cursor

Add to your Cursor MCP settings (.cursor/mcp.json):

{
  "mcpServers": {
    "amazon": {
      "command": "npx",
      "args": ["-y", "@pullapi/amazon-scraper-mcp"],
      "env": {
        "RAPIDAPI_KEY": "your-rapidapi-key"
      }
    }
  }
}

License

MIT