3 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: [/* ... */] });search_ai_tools, view_ai_tool, view_category{
name: "search_ai_tools",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}search_ai_tools, view_ai_tool, view_category<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_ai_tools" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "search_ai_tools",
"description": "Search the AI Collection directory for AI tools matching a query and open the results page.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query, e.g. \"image generation\""
}
},
"required": [
"query"
]
},
"annotations": {}
}view_ai_tool: registered at 2455.699999809265ms// Register tools as soon as they're ready, not behind a deferred/async chunk.
document.modelContext.provideContext({ tools: [/* ... */] });// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });search_ai_tools, view_ai_tool, view_category{
name: "search_ai_tools",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));search_ai_tools, view_ai_tool, view_category<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_ai_tools" tooldescription="...">
<!-- the same action, as UI -->
</form>