Seoul Essentials

find_places

Search for public facilities in Seoul (restrooms, pharmacies, WiFi hotspots, AED locations, tourist info centers). Args: type: Type of facility — "toilet", "pharmacy", "wifi", "aed", or "tourist_info". district: Seoul district name in English or Korean (e.g., "gangnam", "jongno", "강남구", "종로구"). filters: Service-specific filters as key-value pairs. Examples: {"english": true} for pharmacies with English support, {"is_24h": true} for 24-hour restrooms, {"indoor": true} for indoor WiFi. limit: Maximum number of results to return (1-50, default 10). Returns: A list of matching places with location, services, and hours information.

Remote do-droid/seoul-essentials

Other tools also called find_places? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "type": {
      "enum": [
        "toilet",
        "pharmacy",
        "wifi",
        "aed",
        "tourist_info"
      ],
      "type": "string"
    },
    "limit": {
      "type": "integer",
      "default": 10
    },
    "filters": {
      "anyOf": [
        {
          "type": "object",
          "additionalProperties": true
        },
        {
          "type": "null"
        }
      ],
      "default": null
    },
    "district": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null
    }
  }
}