Amazon Marketplace Intelligence
Amazon Search MCP Tool
Simulates a real user searching on Amazon's storefront to get real-time keyword ranking and search results page data.
MCP tool name
nexscope_amazon_searchEquivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-search/runJSON-RPC method
tools/callAuthentication
Send the user API key as a bearer token on every MCP JSON-RPC request.
Authorization: Bearer nk_xxxxxxxxxxxxxxxxxIf authentication is missing or invalid, ask the user to open API Access and copy a valid key before calling this tool.
Call this MCP tool
Use tools/call with the MCP tool name below. The arguments object should match the table on this page.
{
"jsonrpc": "2.0",
"id": "amazon-search-1",
"method": "tools/call",
"params": {
"name": "nexscope_amazon_search",
"arguments": {
"keyword": "phone case",
"page": 1
}
}
}REST API equivalent
POST /api/skill-api/v1/runhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-search/runCanonical detail URL
https://www.nexscope.ai/mcp-map/amazon-searchArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
keyword | string | optional | Keyword; please translate to the language of the target country whenever possible, e.g., use English keywords for the US, German keywords for Germany, etc. (max length 1024) Example: phone case |
amazonDomain | string | optional | Amazon country site, default amazon.com Example: {} |
node | string | optional | Amazon category node (max length 1000) Example: {} |
language | string | optional | Language/region code, e.g., en_US, de_DE, ja_JP, fr_FR (max length 1000) Example: {} |
sort | string | optional | Sort order: relevanceblender (Featured, default), price-asc-rank (Price low to high), price-desc-rank (Price high to low), review-rank (Avg. customer review), date-desc-rank (Newest arrivals), exact-aware-popularity-rank (Best sellers) Example: {} |
page | integer | optional | Page number (starting from 1, ~20 items per page), default 1 Example: 1 |
deliveryZip | string | optional | Delivery zip code, used to simulate Amazon frontend address. It is recommended to use commonly used zip codes for major cities in the target country, e.g., New York zip code 10001 for the US site (max length 1000) Example: {} |
device | string | optional | Device type: desktop, mobile, tablet, default desktop (max length 1000) Example: {} |
Response fields
Treat structuredContent as the programmatic API response payload.
| Name | Type | Required | Meaning |
|---|---|---|---|
total | integer | optional | Total rows Example: 1 |
keyword | string | optional | Search keyword Example: phone case |
type | string | optional | Render style Example: {} |
columns | array | optional | Rendered column definitions Example: [] |
costToken | integer | optional | Token consumption Example: 1 |
products | array | optional | Search result list (see below) Example: [] |
products[].asin | string | optional | ASIN Example: B072MQ5BRX |
products[].title | string | optional | Title Example: {} |
products[].brand | string | optional | Brand Example: {} |
products[].price | number | optional | Price Example: 1 |
products[].extractedPrice | number | optional | Parsed price Example: 1 |
products[].oldPrice | number | optional | Strikethrough price Example: 1 |
products[].extractedOldPrice | number | optional | Parsed strikethrough price Example: 1 |
products[].currency | string | optional | Currency Example: {} |
products[].priceUnit | string | optional | Price unit Example: {} |
products[].extractedPriceUnit | number | optional | Parsed price unit Example: 1 |
products[].rating | number | optional | Rating Example: 1 |
products[].ratings | integer | optional | Number of ratings Example: 1 |
products[].position | integer | optional | Position Example: 1 |
products[].sponsored | boolean | optional | Whether sponsored Example: false |
products[].imageUrl | string | optional | Thumbnail Example: https://example.com/image.jpg |
products[].asinUrl | string | optional | Link Example: B072MQ5BRX |
products[].delivery | string | optional | Delivery information Example: {} |
products[].fulfillment | string | optional | Fulfillment information (e.g., FBA) Example: {} |
products[].availableDate | string | optional | Listing time Example: 2026-01-01 |
products[].monthlySalesUnits | integer | optional | Monthly sales units Example: 1 |
products[].monthlySalesRevenue | string | optional | Monthly sales revenue Example: {} |
products[].sellerNation | string | optional | Seller nationality Example: {} |
products[].dimension | string | optional | Dimensions Example: {} |
products[].weight | string | optional | Weight Example: {} |
products[].options | string | optional | Options Example: {} |
products[].offers | string | optional | Offer information Example: {} |
products[].badges | string | optional | Amazon frontend search badges Example: {} |
products[].tags | string | optional | Tags Example: {} |
products[].snapEbtEligible | boolean | optional | SNAP/EBT eligibility Example: false |
products[].sourceType | string | optional | Source type: amazon Example: {} |
products[].sourceTool | string | optional | Source tool Example: {} |
products[].keyword | string | optional | Keyword Example: phone case |
errcode | integer | optional | Upstream status code returned by the provider. Example: {} |
errmsg | string | optional | Upstream status message returned by the provider. Example: {} |
code | string | optional | Provider-specific status code. Example: {} |
msg | string | optional | Provider-specific status message. Example: {} |
message | string | optional | Provider-specific message. Example: {} |
title | string | optional | Provider-specific response title. Example: {} |
sourceType | string | optional | Provider-specific source platform type. Example: {} |
sourceTool | string | optional | Provider-specific source tool name. Example: {} |
costTime | integer | optional | Execution time reported by the upstream provider. Example: {} |
page | integer | optional | Current page returned by the upstream provider. Example: {} |
pageSize | integer | optional | Page size returned by the upstream provider. Example: {} |
pageItemCount | integer | optional | Item count on the current page returned by the upstream provider. Example: {} |
totalPage | integer | optional | Total page count returned by the upstream provider. Example: {} |
dataSnapshotMonth | string | optional | Data snapshot month returned by the upstream provider. Example: {} |
Examples
Example arguments
{
"keyword": "phone case",
"page": 1
}Example structuredContent
{
"total": 1,
"keyword": "phone case",
"columns": [],
"costToken": 1,
"products": [
{
"asin": "B072MQ5BRX",
"price": 1,
"extractedPrice": 1,
"oldPrice": 1,
"extractedOldPrice": 1,
"extractedPriceUnit": 1,
"rating": 1,
"ratings": 1,
"position": 1,
"sponsored": false,
"imageUrl": "https://example.com/image.jpg",
"asinUrl": "B072MQ5BRX",
"availableDate": "2026-01-01",
"monthlySalesUnits": 1,
"snapEbtEligible": false,
"keyword": "phone case"
}
]
}