demo · Commerce · JSON · API for agents
Navigates the boutique to find a product and opens its page.
{
"name": "search_catalog",
"kind": "read",
"impl": "imperative",
"description": "Navigates the boutique to find a product and opens its page.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string"
}
},
"required": [
"query"
]
},
"page": "/"
}Retrieves past orders to identify a user's 'usual' beans for reordering.
{
"name": "get_order_history",
"kind": "read",
"impl": "imperative",
"description": "Retrieves past orders to identify a user's 'usual' beans for reordering.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}Adds an item to the cart and visually updates the UI bag icon.
{
"name": "reorder_product",
"kind": "action",
"impl": "imperative",
"description": "Adds an item to the cart and visually updates the UI bag icon.",
"inputSchema": {
"type": "object",
"properties": {
"item_id": {
"type": "string"
}
},
"required": [
"item_id"
]
},
"page": "/"
}Provides technical dimensions, height, and water tank capacity for the Alchemist machine.
{
"name": "get_machine_specifications",
"kind": "read",
"impl": "imperative",
"description": "Provides technical dimensions, height, and water tank capacity for the Alchemist machine.",
"inputSchema": {
"type": "object",
"properties": {}
},
"page": "/"
}