4 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
search_grocery_deals, find_nearby_supermarkets, compare_prices, save_deal<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_grocery_deals" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "search_grocery_deals",
"description": "Search this week's verified South African grocery specials by keyword and show them on the Deals page.",
"inputSchema": {
"additionalProperties": false,
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"minLength": 2,
"maxLength": 80,
"description": "What to look for, as a shopper would say it: \"rice\", \"2l milk\", \"peanut butter\". One product, not a whole list."
}
}
},
"annotations": {
"readOnlyHint": true
}
}save_deal: 1 parameter description is over Chrome's 150-character guidance{
name: "save_deal",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}save_deal{
name: "save_deal",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));search_grocery_deals, find_nearby_supermarkets, compare_prices, save_deal<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_grocery_deals" tooldescription="...">
<!-- the same action, as UI -->
</form>