Naver Search MCP Server

by isnow890
Verified

datalab_shopping_keyword_by_device

Analyze Naver Shopping keyword trends by device type (PC or mobile) over a specified time period to understand user behavior and optimize marketing strategies.

Instructions

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

Input Schema

NameRequiredDescriptionDefault
categoryYesCategory code
deviceYesDevice type
endDateYesEnd date (yyyy-mm-dd)
keywordYesSearch keyword
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" }, "keyword": { "description": "Search keyword", "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", "keyword", "device" ], "type": "object" }
ID: kpv7kdyboo