Seoul Essentials
find_nearby
Find public facilities near GPS coordinates in Seoul, sorted by distance. Args: lat: Latitude of the search center point (Seoul range: ~37.4 to ~37.7). lng: Longitude of the search center point (Seoul range: ~126.7 to ~127.2). radius_m: Search radius in meters (100-5000, default 500). type: Optional filter by facility type — "toilet", "pharmacy", "wifi", "aed", or "tourist_info". limit: Maximum number of results to return (1-20, default 5). Returns: A list of nearby places sorted by distance, with distance_m field indicating meters from the search point.
Remote do-droid/seoul-essentials
Other tools also called find_nearby?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"lat": {
"type": "number"
},
"lng": {
"type": "number"
},
"type": {
"anyOf": [
{
"enum": [
"toilet",
"pharmacy",
"wifi",
"aed",
"tourist_info"
],
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"limit": {
"type": "integer",
"default": 5
},
"radius_m": {
"type": "integer",
"default": 500
}
}
}