Tool tree
get_articleAnswer
Retrieve full content, headings, author, publication date, and categories for a specific House of Cannabis blog post.
View tool JSON
{
"name": "get_article",
"kind": "answer",
"impl": "imperative",
"description": "Retrieve full content, headings, author, publication date, and categories for a specific House of Cannabis blog post.",
"inputSchema": {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"description": "Full URL of the blog article to fetch and parse"
}
},
"additionalProperties": false
}
}get_locationAnswer
Get detailed store information for a specific House of Cannabis location by name or slug, including address, phone number, subsite URL, and direct recreational and medical online ordering menu links.
View tool JSON
{
"name": "get_location",
"kind": "answer",
"impl": "imperative",
"description": "Get detailed store information for a specific House of Cannabis location by name or slug, including address, phone number, subsite URL, and direct recreational and medical online ordering menu links.",
"inputSchema": {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"location"
],
"properties": {
"location": {
"type": "string",
"description": "Location name or slug (e.g., 'tacoma', 'tonasket', 'twisp', 'whidbey')"
}
},
"additionalProperties": false
}
}list_articlesAnswer
List articles, community event guides, and cannabis strain reviews published on the House of Cannabis network blog.
View tool JSON
{
"name": "list_articles",
"kind": "answer",
"impl": "imperative",
"description": "List articles, community event guides, and cannabis strain reviews published on the House of Cannabis network blog.",
"inputSchema": {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"category": {
"type": "string",
"description": "Optional category filter (e.g. 'Featured', 'Events', 'Cannabis Reviews')"
}
},
"additionalProperties": false
}
}list_locationsAnswer
List all House of Cannabis dispensary store locations across Washington State with addresses, phone numbers, subsite links, and online ordering availability.
View tool JSON
{
"name": "list_locations",
"kind": "answer",
"impl": "imperative",
"description": "List all House of Cannabis dispensary store locations across Washington State with addresses, phone numbers, subsite links, and online ordering availability.",
"inputSchema": {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {},
"additionalProperties": false
}
}start_online_orderAction
Initiate online ordering for in-store pickup by navigating to the designated House of Cannabis location menu or shop hub.
View tool JSON
{
"name": "start_online_order",
"kind": "act",
"impl": "imperative",
"description": "Initiate online ordering for in-store pickup by navigating to the designated House of Cannabis location menu or shop hub.",
"inputSchema": {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"location": {
"enum": [
"tacoma",
"tonasket",
"twisp",
"whidbey"
],
"type": "string",
"description": "Location slug or name (e.g. 'tacoma', 'tonasket', 'twisp', 'whidbey')"
},
"menu_type": {
"enum": [
"recreational",
"medical"
],
"type": "string",
"default": "recreational",
"description": "Type of cannabis menu to open"
}
},
"additionalProperties": false
}
}start_rewards_signupAction
Initiate membership signup for the network-wide Alpine IQ House of Cannabis loyalty rewards wallet.
View tool JSON
{
"name": "start_rewards_signup",
"kind": "act",
"impl": "imperative",
"description": "Initiate membership signup for the network-wide Alpine IQ House of Cannabis loyalty rewards wallet.",
"inputSchema": {
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {},
"additionalProperties": false
}
}