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: [/* ... */] });search_geosurge, list_articles, get_page_markdown, navigate{
name: "search_geosurge",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}search_geosurge, list_articles, get_page_markdown, navigate<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_geosurge" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "search_geosurge",
"description": "Search geoSurge's blog and content for a query. Returns matching articles as Markdown links with summaries.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search terms"
}
},
"required": [
"query"
]
},
"annotations": {}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });search_geosurge, list_articles, get_page_markdown, navigate{
name: "search_geosurge",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "navigate" /* short, unique, verb-based */ }search_geosurge, list_articles, get_page_markdown, navigate<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_geosurge" tooldescription="...">
<!-- the same action, as UI -->
</form>