6 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
searchWatches, exploreWatches, searchByMovement, getFilterOptions, getWatchDetails<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="searchwatches" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "searchWatches",
"description": "Search the watch catalog by free-text keyword across brand, model, and reference number. When given a reference number, search with the reference ALONE (no brand). If no results, retry shorter: reference only, brand only, or model only. Do NOT use for calibre names or complications — use searchByMovement. Returns paginated results (brand, model, reference, photo, slug) and navigates the page to show them.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "A single search term: a brand name, model name, or reference number. Use the reference number alone when one is provided."
},
"page": {
"type": "number",
"description": "Page number for pagination, starts at 1"
}
},
"required": [
"query"
]
},
"annotations": {
"readOnlyHint": true,
"untrustedContentHint": true
}
}exploreWatches: declares no required list, so an agent cannot tell which parameters are mandatory; getFilterOptions: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "exploreWatches",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}signIn{
name: "signIn",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "explorewatches" /* short, unique, verb-based */ }searchWatches, exploreWatches, searchByMovement, getFilterOptions, getWatchDetails<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="searchwatches" tooldescription="...">
<!-- the same action, as UI -->
</form>