search_by_category
Find places by category group code within a specific radius. Input center coordinates and radius to retrieve locations such as restaurants, schools, or public institutions using the MCP server for Kakao Local API.
Instructions
Searches for places with matching category group code
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category_group_code | Yes | category used to search for places (CategoryGroupCode resource) | |
center_coordinate | Yes | longitude and latitude of a center | |
page | No | page number of result | |
radius_from_center | Yes | search radius from the center in meters |
Input Schema (JSON Schema)
{
"$defs": {
"CategoryGroupCode": {
"enum": [
"대형마트 (Large Mart, Grocery Store)",
"편의점 (Convenience Store)",
"어린이집, 유치원 (Daycare, Kindergarten)",
"학교 (School)",
"학원 (Academy/Private Institute)",
"주차장 (Parking Lot)",
"주유소, 충전소 (Gas Station, Charging Station)",
"지하철역 (Subway Station)",
"은행 (Bank)",
"문화시설 (Cultural Facility)",
"중개업소 (Agency, e.g. Real Estate)",
"공공기관 (Public Institution)",
"관광명소 (Tourist Attraction)",
"숙박 (Accommodation)",
"음식점 (Restaurant)",
"카페 (Cafe)",
"병원 (Hospital)",
"약국 (Pharmacy)"
],
"title": "CategoryGroupCode",
"type": "string"
},
"Coordinate": {
"properties": {
"latitude": {
"title": "Latitude",
"type": "string"
},
"longitude": {
"title": "Longitude",
"type": "string"
}
},
"required": [
"longitude",
"latitude"
],
"title": "Coordinate",
"type": "object"
}
},
"properties": {
"category_group_code": {
"$ref": "#/$defs/CategoryGroupCode",
"description": "category used to search for places (CategoryGroupCode resource)"
},
"center_coordinate": {
"$ref": "#/$defs/Coordinate",
"description": "longitude and latitude of a center"
},
"page": {
"default": 1,
"description": "page number of result",
"minimum": 1,
"title": "Page",
"type": "integer"
},
"radius_from_center": {
"description": "search radius from the center in meters",
"exclusiveMinimum": 0,
"title": "Radius From Center",
"type": "integer"
}
},
"required": [
"category_group_code",
"center_coordinate",
"radius_from_center"
],
"title": "search_by_categoryArguments",
"type": "object"
}