Three MCP tools for structured Amazon data extraction. All return JSON.
| Parameter | Type | Description |
|---|---|---|
tld |
string | Amazon TLD: "com", "co.uk", "ca", "de", etc. |
countryCode |
string | Two-letter country code for geo-specific results |
language |
string | Language for results (e.g. "en-US") |
Product details by ASIN — pricing, description, images, ratings, and specifications.
| Parameter | Type | Required | Description |
|---|---|---|---|
asin |
string | Yes | Amazon Standard Identification Number |
includeHtml |
boolean | No | Include raw HTML in response |
- Use the 10-character ASIN (e.g.,
"B0BSHF7WHW"). Find ASINs from Amazon URLs oramazon_searchresults. - Set
tldto match the target marketplace — prices and availability differ across"com","co.uk","de", etc.
Product search results with titles, prices, ratings, and ASINs.
| Parameter | Type | Required | Description |
|---|---|---|---|
query |
string | Yes | Product search query |
page |
number | No | Page number for pagination |
sortBy |
string | No | Sort parameter |
department |
string | No | Category or department filter |
ref |
string | No | Reference parameter |
- Be specific in queries:
"Sony WH-1000XM5 headphones"beats"headphones". - Use
departmentto narrow results to a category. - Extract ASINs from results to feed into
amazon_productoramazon_offers.
Seller offers and pricing for a product by ASIN — useful for price comparison across sellers.
| Parameter | Type | Required | Description |
|---|---|---|---|
asin |
string | Yes | Amazon Standard Identification Number |
condition |
string | No | Comma-separated condition filters (e.g. "f_new,f_usedverygood") |
fNew |
boolean | No | Include new item offers |
fUsedLikeNew |
boolean | No | Include used (like new) offers |
fUsedVeryGood |
boolean | No | Include used (very good) offers |
fUsedGood |
boolean | No | Include used (good) offers |
fUsedAcceptable |
boolean | No | Include used (acceptable) offers |
- Use condition filters to narrow results —
fNew: truefor new-only, or combine multiple flags. - The
conditionstring parameter and boolean flags (fNew, etc.) are alternative ways to filter; use whichever is more convenient.
- Search:
amazon_searchwithqueryto find products - Details:
amazon_productwith the ASIN for full product info - Price comparison:
amazon_offerswith the ASIN to see all seller listings and conditions