Amazon Marketplace Intelligence
Amazon Product Research Directory MCP Tool
Use this directory to find the concrete API for a research goal. It returns links and typical inputs; invoke the linked API for the actual research data.
MCP tool name
nexscope_amazon_product_researchEquivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-product-research/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-product-research-1",
"method": "tools/call",
"params": {
"name": "nexscope_amazon_product_research",
"arguments": {
"goal": "all"
}
}
}REST API equivalent
POST https://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-product-research/runCanonical detail URL
https://www.nexscope.ai/mcp-map/amazon-product-researchArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
goal | string | optional | Optional filter: all, search, detail, reviews, image-search, opportunity, keyword, price-history, or sales-estimates. Example: all |
Response fields
Treat structuredContent as the programmatic API response payload.
| Name | Type | Required | Meaning |
|---|---|---|---|
directoryType | string | required | Identifies this response as an API directory, not a research result. Example: amazon-product-research-directory |
goal | string | required | Applied directory filter. Example: all |
count | integer | required | Number of concrete API entries returned. Example: 33 |
recommendedApis | array | required | Concrete APIs that execute the selected research operation. Example: [] |
recommendedApis[].operation | string | required | Original API operation name. Example: amazon_search |
recommendedApis[].slug | string | required | Concrete API API slug to invoke. Example: amazon-search |
recommendedApis[].endpoint | string | required | Concrete API API run endpoint. Example: /api/skill-api/v1/skills/amazon-search/run |
recommendedApis[].reason | string | required | What the concrete API executes. Example: Search Amazon storefront results by keyword. |
recommendedApis[].typicalFields | array | required | Typical inputs for navigation; the linked API schema is authoritative. Example: [
"keyword",
"marketplace"
] |
recommendedApis[].requestExample | object | required | Example request for the concrete API. Example: {
"marketplace": "US",
"keyword": "wireless speaker"
} |
usage | string | required | Next step for callers. Example: Invoke one recommended API directly for the actual research result. |
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: {} |
type | string | optional | Provider-specific render or payload type. 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: {} |
costToken | integer | optional | Token cost reported by the upstream provider. 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
{
"goal": "all"
}Example structuredContent
{
"directoryType": "amazon-product-research-directory",
"goal": "all",
"count": 33,
"recommendedApis": [
{
"reason": "Search Amazon storefront results by keyword.",
"endpoint": "/api/skill-api/v1/skills/amazon-search/run",
"slug": "amazon-search",
"operation": "amazon_search",
"typicalFields": [
"keyword",
"marketplace"
],
"requestExample": {
"marketplace": "US",
"keyword": "wireless speaker"
}
},
{
"reason": "Search Amazon Alexa ranking and product results.",
"endpoint": "/api/skill-api/v1/skills/amazon-alexa-search/run",
"slug": "amazon-alexa-search",
"operation": "amazon_alexa_search",
"typicalFields": [
"keyword",
"marketplace"
],
"requestExample": {
"marketplace": "US",
"keyword": "wireless speaker"
}
}
],
"usage": "Invoke one recommended API directly for the actual research result."
}