← WebMCP Directory

Tool tree

danang.kim

liveTravel & Events
https://danang.kim/
Interactive map for Danang, Vietnam with rental ads
Explore capabilities
get_site_infoAnswer

Returns information about danang.kim and its purpose.

View tool JSON
{
  "name": "get_site_info",
  "kind": "answer",
  "impl": "imperative",
  "description": "Returns information about danang.kim and its purpose.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  },
  "page": "/"
}
filter_listings_by_priceAnswer

Find rental property listings in Danang whose monthly rent is from the specified minimum price (inclusive) up to, but not including, the specified maximum price. Prices are in Vietnamese dong (VND). Use this tool when the user asks to find rentals within a price range.

View tool JSON
{
  "name": "filter_listings_by_price",
  "kind": "answer",
  "impl": "imperative",
  "description": "Find rental property listings in Danang whose monthly rent is from the specified minimum price (inclusive) up to, but not including, the specified maximum price. Prices are in Vietnamese dong (VND). Use this tool when the user asks to find rentals within a price range.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "from": {
        "type": "number",
        "minimum": 0,
        "description": "Minimum monthly rental price in Vietnamese dong (VND), inclusive."
      },
      "to": {
        "type": "number",
        "minimum": 0,
        "description": "Maximum monthly rental price in Vietnamese dong (VND), exclusive."
      }
    },
    "required": [
      "from",
      "to"
    ],
    "additionalProperties": false
  },
  "page": "/"
}