← WebMCP Directory

Tool tree

whidbeyisland.hoc420.com

Commerce
https://whidbeyisland.hoc420.com/
House of Cannabis Whidbey Island product information, menu browsing, and store ordering links.
Explore capabilities

Tools verified

get_product_detailsAnswer

Get detailed information for a specific cannabis product including name, brand, pricing, active discounts, potency, image, and description.

View tool JSON
{
  "name": "get_product_details",
  "kind": "answer",
  "impl": "imperative",
  "description": "Get detailed information for a specific cannabis product including name, brand, pricing, active discounts, potency, image, and description.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "url": {
        "type": "string",
        "description": "Direct product URL (e.g. https://hoc420.com/shop/products/...)"
      },
      "product_id": {
        "type": "string",
        "description": "Product ID"
      }
    }
  }
}
list_productsAnswer

List cannabis products by category (such as flower, edibles, pre-rolls, vapes, extracts, concentrates, gear, or deals) from the House of Cannabis Whidbey dispensary menu.

View tool JSON
{
  "name": "list_products",
  "kind": "answer",
  "impl": "imperative",
  "description": "List cannabis products by category (such as flower, edibles, pre-rolls, vapes, extracts, concentrates, gear, or deals) from the House of Cannabis Whidbey dispensary menu.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "limit": {
        "type": "integer",
        "default": 20,
        "description": "Maximum number of products to return"
      },
      "category": {
        "enum": [
          "featured",
          "deals",
          "flower",
          "edible",
          "pre_roll",
          "extract",
          "tincture",
          "topical",
          "vape",
          "gear",
          "shop_all"
        ],
        "type": "string",
        "default": "featured",
        "description": "Menu category to browse"
      }
    }
  }
}
search_productsAnswer

Search dispensary products by keyword or brand name across the House of Cannabis Whidbey menu.

View tool JSON
{
  "name": "search_products",
  "kind": "answer",
  "impl": "imperative",
  "description": "Search dispensary products by keyword or brand name across the House of Cannabis Whidbey menu.",
  "inputSchema": {
    "type": "object",
    "required": [
      "query"
    ],
    "properties": {
      "query": {
        "type": "string",
        "description": "Search keyword, product name, strain, or brand"
      }
    }
  }
}
start_order_handoffAction

Safely navigate the user to the selected product page or category menu to configure weights, view live stock, and proceed with pickup ordering.

View tool JSON
{
  "name": "start_order_handoff",
  "kind": "act",
  "impl": "imperative",
  "description": "Safely navigate the user to the selected product page or category menu to configure weights, view live stock, and proceed with pickup ordering.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "category": {
        "enum": [
          "featured",
          "deals",
          "flower",
          "edible",
          "pre_roll",
          "extract",
          "tincture",
          "topical",
          "vape",
          "gear",
          "shop_all"
        ],
        "type": "string",
        "description": "Menu category to open if no specific product is chosen"
      },
      "product_url": {
        "type": "string",
        "description": "Product URL to navigate to for ordering"
      }
    }
  }
}