Loading...
Loading...
Use when the user asks for nearby bars or 근처 술집. Always ask the user's current location first, then use Kakao Map search + place detail panels to find open-now bars with menu, seating, and phone hints.
npx skill4agent add nomadamas/k-skill kakao-bar-nearby서울역강남사당신논현논현현재 위치를 알려주세요. 서울역/강남/사당 같은 역명이나 동네명으로 보내주시면 카카오맵 기준 근처 술집을 찾아볼게요.가까운 역명이나 동 이름으로 한 번만 더 알려주세요.https://m.map.kakao.com/actions/searchView?q=<query>https://place-api.map.kakao.com/places/panel3/<confirmId>https://place.map.kakao.com/<confirmId>술집영업 중영업 전휴무일단체석바테이블const { searchNearbyBarsByLocationQuery } = require("kakao-bar-nearby");
async function main() {
const result = await searchNearbyBarsByLocationQuery("서울역", {
limit: 5
});
console.log(result.anchor);
console.log(result.items);
}
main().catch((error) => {
console.error(error);
process.exitCode = 1;
});