← WebMCP Directory

Tool tree

durian.rent

Commerce
https://durian.rent/
An interactive map of rental properties in Da Nang, Vietnam, with price filters, listing details, and saved favorites.
Explore capabilities

Tools verified

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
  }
}
filter_rentals_by_priceAction

Set the price range filter on the map interface to filter visible Danang rental listings.

View tool JSON
{
  "name": "filter_rentals_by_price",
  "kind": "act",
  "impl": "imperative",
  "description": "Set the price range filter on the map interface to filter visible Danang rental listings.",
  "inputSchema": {
    "type": "object",
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "properties": {
      "max_price": {
        "type": "number",
        "description": "Maximum price in VND (or in millions if < 1000, e.g. 15 or 15000000)"
      },
      "min_price": {
        "type": "number",
        "description": "Minimum price in VND (or in millions if < 1000, e.g. 3 or 3000000)"
      }
    },
    "additionalProperties": false
  }
}
get_rental_detailAnswer

Get detailed property information for a specific rental ad by listing ID, including price, size, photos, location coordinates, and NhaTot source link.

View tool JSON
{
  "name": "get_rental_detail",
  "kind": "answer",
  "impl": "imperative",
  "description": "Get detailed property information for a specific rental ad by listing ID, including price, size, photos, location coordinates, and NhaTot source link.",
  "inputSchema": {
    "type": "object",
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "required": [
      "id"
    ],
    "properties": {
      "id": {
        "type": "integer",
        "description": "The listing ID of the rental property"
      }
    },
    "additionalProperties": false
  }
}
get_site_infoAnswer

Returns information about durian.rent and its purpose.

View tool JSON
{
  "name": "get_site_info",
  "kind": "answer",
  "impl": "imperative",
  "description": "Returns information about durian.rent and its purpose.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  }
}
list_rentalsAnswer

List available rental properties in Danang from the interactive map, with optional filters for price range and property size.

View tool JSON
{
  "name": "list_rentals",
  "kind": "answer",
  "impl": "imperative",
  "description": "List available rental properties in Danang from the interactive map, with optional filters for price range and property size.",
  "inputSchema": {
    "type": "object",
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "properties": {
      "limit": {
        "type": "integer",
        "description": "Maximum number of listings to return (default 20, max 100)"
      },
      "max_size": {
        "type": "number",
        "description": "Maximum apartment/room size in square meters"
      },
      "min_size": {
        "type": "number",
        "description": "Minimum apartment/room size in square meters"
      },
      "max_price": {
        "type": "number",
        "description": "Maximum monthly rent in VND (or in millions if < 1000, e.g. 15 or 15000000)"
      },
      "min_price": {
        "type": "number",
        "description": "Minimum monthly rent in VND (or in millions if < 1000, e.g. 5 or 5000000)"
      }
    },
    "additionalProperties": false
  }
}
manage_favoritesAction

Add, remove, list, or clear saved favorite rental listings, generating a shareable map URL.

View tool JSON
{
  "name": "manage_favorites",
  "kind": "act",
  "impl": "imperative",
  "description": "Add, remove, list, or clear saved favorite rental listings, generating a shareable map URL.",
  "inputSchema": {
    "type": "object",
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "required": [
      "action"
    ],
    "properties": {
      "id": {
        "type": "integer",
        "description": "Rental listing ID (required for add and remove actions)"
      },
      "action": {
        "enum": [
          "list",
          "add",
          "remove",
          "clear"
        ],
        "type": "string",
        "description": "Favorites operation to perform"
      }
    },
    "additionalProperties": false
  }
}
open_rental_contactAction

Navigate to the NhaTot listing contact page for a specified rental ad.

View tool JSON
{
  "name": "open_rental_contact",
  "kind": "act",
  "impl": "imperative",
  "description": "Navigate to the NhaTot listing contact page for a specified rental ad.",
  "inputSchema": {
    "type": "object",
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "required": [
      "id"
    ],
    "properties": {
      "id": {
        "type": "integer",
        "description": "The rental listing ID to open contact info for"
      }
    },
    "additionalProperties": false
  }
}