Walmart Marketplace Intelligence
Walmart Product Analysis MCP Tool
Returns normalized public ecommerce research data with a fixed read-only provider path.
MCP tool name
nexscope_walmart_product_analysisEquivalent REST API path
https://api.nexscope.ai/api/skill-api/v1/skills/walmart-product-analysis/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": "walmart-product-analysis-1",
"method": "tools/call",
"params": {
"name": "nexscope_walmart_product_analysis",
"arguments": {
"productId": "5169493923",
"operation": "detail"
}
}
}REST API equivalent
POST https://api.nexscope.ai/api/skill-api/v1/skills/walmart-product-analysis/runCanonical detail URL
https://www.nexscope.ai/mcp-map/walmart-product-analysisArguments
operation: searchByName
| Name | Type | Required | Description |
|---|---|---|---|
operation | string | required | Operation: searchByName, detail, trend, or salesVolume Constant: searchByName |
name | string | required | Product name required by searchByName Minimum length: 1 |
pageIndex | integer | optional | Page number, starting at 1 Default: 1 Minimum: 1 |
operation: detail
| Name | Type | Required | Description |
|---|---|---|---|
operation | string | required | Operation: searchByName, detail, trend, or salesVolume Constant: detail |
productId | string | required | Walmart product ID required by detail, trend, and salesVolume Minimum length: 1 |
operation: trend
| Name | Type | Required | Description |
|---|---|---|---|
operation | string | required | Operation: searchByName, detail, trend, or salesVolume Constant: trend |
productId | string | required | Walmart product ID required by detail, trend, and salesVolume Minimum length: 1 |
operation: salesVolume
| Name | Type | Required | Description |
|---|---|---|---|
operation | string | required | Operation: searchByName, detail, trend, or salesVolume Constant: salesVolume |
productId | string | required | Walmart product ID required by detail, trend, and salesVolume Minimum length: 1 |
queryDate | string | optional | Sales-volume start date in YYYY-MM-DD format Format: date |
queryEndDate | string | optional | Sales-volume end date in YYYY-MM-DD format Format: date |
pageIndex | integer | optional | Page number, starting at 1 Default: 1 Minimum: 1 |
Response fields
Treat structuredContent as the programmatic API response payload.
| Name | Type | Required | Description |
|---|---|---|---|
operation | any | required | Operation value used by this API operation. |
value | any | required | Value value used by this API operation. |
requestConsumed | integer | required | Request consumed value used by this API operation. Minimum: 0 |
operation: searchByName
| Name | Type | Required | Description |
|---|---|---|---|
operation | string | optional | Operation value used by this API operation. Constant: searchByName |
value | array | optional | Value value used by this API operation. |
operation: salesVolume
| Name | Type | Required | Description |
|---|---|---|---|
operation | string | optional | Operation value used by this API operation. Constant: salesVolume |
value | array | optional | Value value used by this API operation. |
value[] | array | required | Item in value. Minimum items: 3 Maximum items: 3 |
value[][0] | string | required | Item in value[]. Format: date |
value[][1] | number | required | Item in value[]. |
value[][2] | integer | required | Item in value[]. |
One of option 3
| Name | Type | Required | Description |
|---|---|---|---|
operation | any | optional | Operation value used by this API operation. Allowed: detail, trend |
value | object | optional | Value value used by this API operation. |
Examples
Example arguments
{
"productId": "5169493923",
"operation": "detail"
}Example structuredContent
{
"operation": "detail",
"requestConsumed": 1,
"value": {
"Title": "Example Walmart product",
"Price": 1,
"ProductId": "5169493923"
}
}