6 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });find_cat_toy_guide: 1 parameter description is over Chrome's 150-character guidance; list_cat_toy_guides: declares no required list, so an agent cannot tell which parameters are mandatory; get_page_sh{
name: "find_cat_toy_guide",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}find_cat_toy_guide, list_cat_toy_guides, get_top_cat_toy_affiliate_links, get_page_shopping_paths, get_cat_toy_recommendation_flow{
name: "find_cat_toy_guide",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}find_cat_toy_guide, list_cat_toy_guides, get_top_cat_toy_affiliate_links, get_page_shopping_paths, get_cat_toy_recommendation_flow<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="find_cat_toy_guide" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "find_cat_toy_guide",
"description": "Find the most relevant PickCrest cat gear guide for a shopper need, including catio, renter, window, balcony, yard, fit, permission, indoor enrichment, puzzle feeders, automatic toys, or starter kits.",
"inputSchema": {
"type": "object",
"properties": {
"need": {
"type": "string",
"description": "The shopper need or cat play style to match, for example: catio, renter, window, balcony, yard, no drill, cat ignores toys, bored indoor cat, puzzle feeder, automatic toy, or starter kit."
},
"limit": {
"type": "number",
"description": "Optional maximum number of guides. Defaults to 5."
}
},
"required": [
"need"
]
},
"annotations": {}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });find_cat_toy_guide: 1 parameter description is over Chrome's 150-character guidance; list_cat_toy_guides: declares no required list, so an agent cannot tell which parameters are mandatory; get_page_sh{
name: "find_cat_toy_guide",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}find_cat_toy_guide, list_cat_toy_guides, get_top_cat_toy_affiliate_links, get_page_shopping_paths, get_cat_toy_recommendation_flow{
name: "find_cat_toy_guide",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "get_top_cat_toy_affiliate_links" /* short, unique, verb-based */ }find_cat_toy_guide, list_cat_toy_guides, get_top_cat_toy_affiliate_links, get_page_shopping_paths, get_cat_toy_recommendation_flow<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="find_cat_toy_guide" tooldescription="...">
<!-- the same action, as UI -->
</form>