amazon-scraper-api
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ASA_API_KEY | Yes | Your Amazon Scraper API key. Get one at https://app.amazonscraperapi.com |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| amazon_productB | Fetch structured data for a single Amazon product by ASIN. Returns ~55 fields including title, price, variations, reviews, category ladder, images. |
| amazon_searchA | Run an Amazon keyword search. Returns ranked product listings with organic/sponsored positions, prices, ratings, and image URLs. |
| amazon_batch_createA | Queue up to 1000 ASINs or search queries for async processing. Returns a batch id - poll with amazon_batch_status or receive a webhook callback. |
| amazon_batch_statusB | Poll an async batch job for progress + results. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: batch creation, batch status polling, single product fetch, and keyword search. No overlap between tools.
All tools use snake_case and start with 'amazon_'. Three follow verb_noun pattern ('batch_create', 'batch_status', 'search'), while 'amazon_product' is a noun implying fetch. Minor inconsistency but overall predictable.
Four tools cover the essential scraping operations: search, single product details, and async batch processing. The count is well-scoped for the server's purpose.
Covers search, single product, and batch processing. Missing dedicated review or category tools, but the product tool includes reviews. Minor gaps but core workflows are complete.