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
Name | Required | Description | Default |
---|---|---|---|
display | No | Number of results to display (default: 1, max: 5) | |
query | Yes | Search query | |
sort | No | Sort method (random: accuracy, comment: review count) | |
start | No | Start 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"
}