Naver Search MCP Server

by isnow890
Verified

search_local

Find local businesses and services in a specific area by querying Naver’s database, with options to sort results by accuracy or review count and control the number of displayed outcomes.

Instructions

Perform a search on Naver Local. (네이버 지역 검색)

Input Schema

NameRequiredDescriptionDefault
displayNoNumber of results to display (default: 1, max: 5)
queryYesSearch query
sortNoSort method (random: accuracy, comment: review count)
startNoStart position of search results (default: 1, max: 1)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "display": { "description": "Number of results to display (default: 1, max: 5)", "type": "number" }, "query": { "description": "Search query", "type": "string" }, "sort": { "description": "Sort method (random: accuracy, comment: review count)", "enum": [ "random", "comment" ], "type": "string" }, "start": { "description": "Start position of search results (default: 1, max: 1)", "type": "number" } }, "required": [ "query" ], "type": "object" }
ID: kpv7kdyboo