9 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
get_product, list_products_in_channel, view_cart, add_to_cart, remove_from_cart{
name: "get_product",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}get_product, list_products_in_channel, view_cart, add_to_cart, remove_from_cart<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_product" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "get_product",
"description": "Fetch a single product (listing) by its slug for the current market and channel. Returns title, price, SKUs, and primary media.",
"inputSchema": {
"type": "object",
"properties": {
"listingSlug": {
"type": "string",
"description": "Listing slug (URL segment) for the product"
}
},
"required": [
"listingSlug"
],
"additionalProperties": false
},
"annotations": {}
}add_to_cart: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "add_to_cart",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}get_product, list_products_in_channel, view_cart, add_to_cart, remove_from_cart{
name: "get_product",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "fill_shipping_address" /* short, unique, verb-based */ }get_product, list_products_in_channel, view_cart, add_to_cart, remove_from_cart<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_product" tooldescription="...">
<!-- the same action, as UI -->
</form>