약국 검색
lifeguard_find_pharmacyFind nearby pharmacies by current location, with filters for night or holiday operating hours.
Instructions
주변 약국을 검색합니다.
야간 운영 약국, 휴일 운영 약국을 필터링할 수 있습니다.
Args:
latitude (number, required): 현재 위치 위도
longitude (number, required): 현재 위치 경도
filter (string, optional): 필터 옵션 (기본값: "all")
"all": 전체 약국
"night": 야간 운영 약국 (22시 이후 영업)
"holiday": 휴일 운영 약국 (일요일/공휴일)
radius_km (number, optional): 검색 반경 km (기본값: 3)
limit (number, optional): 최대 결과 수 (기본값: 10)
response_format (string, optional): 출력 형식 (기본값: "markdown")
Returns:
약국 목록 (이름, 주소, 연락처, 거리, 운영시간)
Examples:
"집 근처 약국 찾기" → latitude, longitude 입력
"야간 영업하는 약국" → filter: "night"
"일요일에 여는 약국" → filter: "holiday"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | 최대 결과 수 (기본값: 10) | |
| filter | No | 필터 옵션: all(전체), night(야간 22시 이후 운영), holiday(휴일 운영) | all |
| latitude | Yes | 현재 위치 위도 | |
| longitude | Yes | 현재 위치 경도 | |
| radius_km | No | 검색 반경 km (기본값: 3) | |
| response_format | No | 출력 형식: 'markdown'은 사람이 읽기 쉬운 형식, 'json'은 프로그래밍 처리용 | markdown |