4 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: [/* ... */] });list_submo_plans, search_submo_cancel_guides, open_submo_developers, list_submo_price_indexes{
name: "list_submo_plans",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}list_submo_plans, search_submo_cancel_guides, open_submo_developers, list_submo_price_indexes<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="list_submo_plans" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "list_submo_plans",
"description": "List Submo membership plans and intro prices.",
"inputSchema": {
"type": "object",
"properties": {}
},
"annotations": {}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });search_submo_cancel_guides: 1 parameter has no description (query){
name: "search_submo_cancel_guides",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}list_submo_plans, search_submo_cancel_guides, open_submo_developers, list_submo_price_indexes{
name: "list_submo_plans",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "open_submo_developers" /* short, unique, verb-based */ }list_submo_plans, search_submo_cancel_guides, open_submo_developers, list_submo_price_indexes<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="list_submo_plans" tooldescription="...">
<!-- the same action, as UI -->
</form>