Naver Search MCP Server

by isnow890
Verified

datalab_shopping_by_device

Analyze shopping trends on Naver by device type (PC or mobile) to identify user behavior patterns and optimize marketing strategies over specific time periods.

Instructions

Perform a trend analysis on Naver Shopping by device. (네이버 쇼핑 기기별 트렌드 분석)

Input Schema

NameRequiredDescriptionDefault
categoryYesCategory code
deviceYesDevice type
endDateYesEnd date (yyyy-mm-dd)
startDateYesStart date (yyyy-mm-dd)
timeUnitYesTime unit

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "category": { "description": "Category code", "type": "string" }, "device": { "description": "Device type", "enum": [ "pc", "mo" ], "type": "string" }, "endDate": { "description": "End date (yyyy-mm-dd)", "type": "string" }, "startDate": { "description": "Start date (yyyy-mm-dd)", "type": "string" }, "timeUnit": { "description": "Time unit", "enum": [ "date", "week", "month" ], "type": "string" } }, "required": [ "startDate", "endDate", "timeUnit", "category", "device" ], "type": "object" }
ID: kpv7kdyboo