Amazon Marketplace Intelligence

Amazon Alexa Search MCP Tool

Initiate natural language Q&A through Amazon's storefront Alexa shopping assistant to get shopping guidance answers, recommended product groups, ASIN lists, and follow-up questions. Each call supports only 1 prompt; for follow-ups, the agent must summarize context and concatenate a new question for a new request. A url can be used to supplement Amazon page context.

MCP tool name
nexscope_amazon_alexa_search
Equivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-alexa-search/run
JSON-RPC method
tools/call

Authentication

Send the user API key as a bearer token on every MCP JSON-RPC request.

Authorization: Bearer nk_xxxxxxxxxxxxxxxxx

If 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-alexa-search-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_amazon_alexa_search",
    "arguments": {
      "format": "markdown",
      "prompts": [
        "What are good phone cases for iPhone?"
      ]
    }
  }
}
REST API equivalent
POST /api/skill-api/v1/runhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-alexa-search/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/amazon-alexa-search

Arguments

NameTypeRequiredMeaning
promptsarrayrequired
Conversation prompt array, supports only 1 entry. Each call accepts only 1 question. For follow-up questions, the agent must summarize key information from the previous response (recommended products, ASINs, key conclusions, etc.), concatenate it with the new question, and send it as a new prompts[0]. Each call is an independent new session and does not retain cross-call conversation history
Example: [ "What are good phone cases for iPhone?" ]
formatstringoptional
Response format: markdown (default) returns a readable report; json returns a structured data array
Example: {}
urlstringoptional
Linked page URL, used to supplement the page context of Alexa's current response. Only pass this when the user provides a specific page (category page / search results page / product detail page, etc.); do not pass this parameter for the Amazon homepage (e.g. https://www.amazon.com/)
Example: https://example.com/image.jpg

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredMeaning
products[].stdoutstringoptional
Markdown format Q&A report, containing each round's user question, Alexa answer, recommended products, and follow-up questions; only returned when format=markdown
Example: {}
dataarrayoptional
Structured conversation result array; only returned when format=json
Example: []
resultsNumintegeroptional
Number of conversation rounds Alexa actually answered; 0 means no valid response was produced
Example: 1
codestringoptional
Business status code, "200" on success (same as numeric errcode)
Example: {}
errcodeintegeroptional
Business status code (HTTP layer is generally 200; use this field to determine business success/failure)
Example: 1
products[].msg/errmsgstringoptional
Response message, ok on success
Example: {}
costTimeintegeroptional
API latency in milliseconds
Example: 1
costTokenintegeroptional
Tokens consumed by this call; charged only if upstream succeeds
Example: 1
taskIdstringoptional
Task identifier returned by upstream
Example: example-id
typestringoptional
Render style: stdoutWorkbenches (markdown) or json
Example: {}
data[].promptstringoptional
Prompt sent to Alexa for this round
Example: {}
data[].contentstringoptional
Text content of Alexa's response for this round
Example: {}
data[].screenshotstringoptional
Screenshot link for this round's conversation
Example: {}
data[].followUpQuestionsarrayoptional
List of follow-up questions recommended by Alexa
Example: []
data[].productsarrayoptional
Recommended product group list, each group containing title and items
Example: []
products[].titlestringoptional
Recommended group title
Example: {}
products[].items[].asinstringoptional
Product ASIN
Example: B072MQ5BRX
products[].items[].titlestringoptional
Product title
Example: {}
products[].items[].urlstringoptional
Product detail page URL
Example: https://example.com/image.jpg
products[].items[].coverstringoptional
Product cover image URL
Example: {}
products[].items[].pricestringoptional
Current price (with currency)
Example: {}
products[].items[].originalPricestringoptional
Original or strikethrough price
Example: {}
products[].items[].scorestringoptional
Rating
Example: {}
products[].items[].ratingsCountstringoptional
Review count
Example: {}
products[].items[].describestringoptional
Product description
Example: {}
errmsgstringoptional
Upstream status message returned by the provider.
Example: {}
msgstringoptional
Provider-specific status message.
Example: {}
messagestringoptional
Provider-specific message.
Example: {}
titlestringoptional
Provider-specific response title.
Example: {}
sourceTypestringoptional
Provider-specific source platform type.
Example: {}
sourceToolstringoptional
Provider-specific source tool name.
Example: {}
pageintegeroptional
Current page returned by the upstream provider.
Example: {}
pageSizeintegeroptional
Page size returned by the upstream provider.
Example: {}
pageItemCountintegeroptional
Item count on the current page returned by the upstream provider.
Example: {}
totalPageintegeroptional
Total page count returned by the upstream provider.
Example: {}
dataSnapshotMonthstringoptional
Data snapshot month returned by the upstream provider.
Example: {}

Examples

Example arguments

{
  "format": "markdown",
  "prompts": [
    "What are good phone cases for iPhone?"
  ]
}

Example structuredContent

{
  "data": [
    {
      "followUpQuestions": [],
      "products": []
    }
  ],
  "resultsNum": 1,
  "errcode": 1,
  "costTime": 1,
  "costToken": 1,
  "taskId": "example-id",
  "products": [
    {
      "items": [
        {
          "asin": "B072MQ5BRX",
          "url": "https://example.com/image.jpg"
        }
      ]
    }
  ]
}