@pullapi/amazon-scraper-mcp
v1.0.0
Published
Amazon MCP server — product search, details, reviews & bestsellers. For Claude, Cursor & AI agents.
Maintainers
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
