Naver Search MCP Server

by isnow890
Verified

datalab_shopping_by_age

Analyze Naver Shopping trends by age group, category, and time period to identify purchasing patterns and consumer preferences for targeted insights.

Instructions

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

Input Schema

NameRequiredDescriptionDefault
agesYesAge groups
categoryYesCategory code
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": { "ages": { "description": "Age groups", "items": { "enum": [ "10", "20", "30", "40", "50", "60" ], "type": "string" }, "type": "array" }, "category": { "description": "Category code", "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", "ages" ], "type": "object" }
ID: kpv7kdyboo