Amazon Marketplace Intelligence
Amazon Category Lookup MCP Tool
Supports exact parent-node browsing and label-based category search.
MCP tool name
nexscope_amazon_category_lookupEquivalent REST API path
https://api.nexscope.ai/api/skill-api/v1/skills/amazon-category-lookup/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-category-lookup-1",
"method": "tools/call",
"params": {
"name": "nexscope_amazon_category_lookup",
"arguments": {
"marketId": "1",
"nodeId": "0",
"operation": "lookup"
}
}
}REST API equivalent
POST https://api.nexscope.ai/api/skill-api/v1/skills/amazon-category-lookup/runCanonical detail URL
https://www.nexscope.ai/mcp-map/amazon-category-lookupArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
operation | string | optional | lookup (default) or like. Example: lookup |
marketId | string | optional | Amazon marketplace or site identifier. Example: 1 |
nodeId | string | optional | Parent category node identifier. Example: 0 |
table | string | optional | Optional upstream category table selector. Example: nodes |
nodeLabel | string | optional | Category label required by operation=like. Example: Electronics |
Response fields
Treat structuredContent as the programmatic API response payload.
| Name | Type | Required | Meaning |
|---|---|---|---|
total | integer | optional | Number of returned category nodes. Example: 1 |
data | array | optional | Amazon category node records. Example: [] |
data[].nodeId | string | optional | Category node identifier. Example: 172282 |
data[].nodeLabel | string | optional | Category label. Example: Electronics |
data[].parentNodeId | string | optional | Parent node identifier. Example: 0 |
costToken | integer | optional | Provider-reported token cost. Example: 150 |
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: {} |
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
{
"marketId": "1",
"nodeId": "0",
"operation": "lookup"
}Example structuredContent
{
"total": 1,
"data": [
{
"nodeId": "172282",
"nodeLabel": "Electronics",
"parentNodeId": "0"
}
],
"costToken": 150
}