Tool tree
A South African digital marketing agency offering SEO, advertising, automation, and marketing packages.
add_package_to_cartAction
Initiates the WooCommerce cart handoff for a selected marketing package.
View tool JSON
{
"name": "add_package_to_cart",
"kind": "act",
"impl": "imperative",
"description": "Initiates the WooCommerce cart handoff for a selected marketing package.",
"inputSchema": {
"type": "object",
"properties": {
"product_id": {
"type": "string",
"description": "WooCommerce Product ID"
},
"package_url": {
"type": "string",
"description": "Fallback product URL if product ID is unknown"
}
}
}
}get_package_detailsAnswer
Retrieves comprehensive package information, descriptions, feature breakdowns, and pricing for a specific marketing package.
View tool JSON
{
"name": "get_package_details",
"kind": "answer",
"impl": "imperative",
"description": "Retrieves comprehensive package information, descriptions, feature breakdowns, and pricing for a specific marketing package.",
"inputSchema": {
"type": "object",
"required": [
"package_url"
],
"properties": {
"package_url": {
"type": "string",
"description": "Full URL of the package product page"
}
}
}
}list_packagesAnswer
Lists available digital marketing packages and services from YOMO Digital with pricing and product IDs.
View tool JSON
{
"name": "list_packages",
"kind": "answer",
"impl": "imperative",
"description": "Lists available digital marketing packages and services from YOMO Digital with pricing and product IDs.",
"inputSchema": {
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "Optional category filter if applicable"
}
}
}
}start_consultationAction
Initiates a consultation handoff via WhatsApp strategy call or the website contact page.
View tool JSON
{
"name": "start_consultation",
"kind": "act",
"impl": "imperative",
"description": "Initiates a consultation handoff via WhatsApp strategy call or the website contact page.",
"inputSchema": {
"type": "object",
"properties": {
"channel": {
"enum": [
"whatsapp",
"contact_page"
],
"type": "string",
"default": "whatsapp",
"description": "Preferred contact channel"
},
"message": {
"type": "string",
"description": "Optional initial consultation enquiry message"
}
}
}
}