Naver Search MCP Server

by isnow890
Verified

datalab_shopping_keywords

Analyze shopping keyword trends on Naver to identify market insights and consumer behavior patterns within specific timeframes and categories.

Instructions

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

Input Schema

NameRequiredDescriptionDefault
categoryYesCategory code
endDateYesEnd date (yyyy-mm-dd)
keywordYesArray of keyword name and value pairs
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" }, "endDate": { "description": "End date (yyyy-mm-dd)", "type": "string" }, "keyword": { "description": "Array of keyword name and value pairs", "items": { "additionalProperties": false, "properties": { "name": { "description": "Keyword name", "type": "string" }, "param": { "description": "Keyword values", "items": { "type": "string" }, "type": "array" } }, "required": [ "name", "param" ], "type": "object" }, "type": "array" }, "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" ], "type": "object" }
ID: kpv7kdyboo