Naver Search MCP Server

by isnow890
Verified

datalab_search

Analyze search keyword trends on Naver by specifying date ranges, keyword groups, and time units to identify patterns in user search behavior.

Instructions

Perform a trend analysis on Naver search keywords. (네이버 검색어 트렌드 분석)

Input Schema

NameRequiredDescriptionDefault
endDateYesEnd date (yyyy-mm-dd)
keywordGroupsYesKeyword groups
startDateYesStart date (yyyy-mm-dd)
timeUnitYesTime unit

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "endDate": { "description": "End date (yyyy-mm-dd)", "type": "string" }, "keywordGroups": { "description": "Keyword groups", "items": { "additionalProperties": false, "properties": { "groupName": { "description": "Group name", "type": "string" }, "keywords": { "description": "List of keywords", "items": { "type": "string" }, "type": "array" } }, "required": [ "groupName", "keywords" ], "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", "keywordGroups" ], "type": "object" }
ID: kpv7kdyboo