Keyword & Search Demand

Amazon Keyword Intelligence MCP Tool

Query and analyze Amazon ABA (Brand Analytics) search term data, covering 15 marketplaces with nearly 3 years of weekly data.

MCP tool name
nexscope_amazon_keyword_intelligence
Equivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-keyword-intelligence/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-keyword-intelligence-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_amazon_keyword_intelligence",
    "arguments": {
      "createDownloadUrl": false,
      "analysisDescription": "Find Amazon Brand Analytics search demand for phone case in the US marketplace",
      "region": "US"
    }
  }
}
REST API equivalent
POST /api/skill-api/v1/runhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-keyword-intelligence/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/amazon-keyword-intelligence

Arguments

NameTypeRequiredMeaning
analysisDescriptionstringrequired
Natural language description that precisely expresses the query intent
Example: Analyze Amazon Brand Analytics search demand for phone case in the US marketplace
regionstringoptional
Site code, default US. Options: US, DE, BR, CA, AU, JP, AE, ES, FR, IT, SA, TR, MX, SE, NL
Example: US
createDownloadUrlbooleanoptional
Whether to generate a CSV download link, default false
Example: false

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredMeaning
successbooleanoptional
Whether the query succeeded
Example: false
tablesarrayoptional
Result data array, each element containing data (data rows), columns (column definitions), name (Sheet name)
Example: []
totalintegeroptional
Total result count
Example: 1
downloadUrlstringoptional
When createDownloadUrl is true, returns the CSV file URL
Example: https://example.com/image.jpg
msgstringoptional
Additional message
Example: {}
downloadNotestringoptional
Download-related note
Example: {}
codestringoptional
Response code
Example: {}
costTimeintegeroptional
Latency (ms)
Example: 1
costTokenintegeroptional
Tokens consumed
Example: 1
errcodeintegeroptional
Upstream status code returned by the provider.
Example: {}
errmsgstringoptional
Upstream status message returned by the provider.
Example: {}
messagestringoptional
Provider-specific message.
Example: {}
typestringoptional
Provider-specific render or payload type.
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

{
  "createDownloadUrl": false,
  "analysisDescription": "Find Amazon Brand Analytics search demand for phone case in the US marketplace",
  "region": "US"
}

Example structuredContent

{
  "success": false,
  "tables": [],
  "total": 1,
  "downloadUrl": "https://example.com/image.jpg",
  "costTime": 1,
  "costToken": 1
}