2 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_companies, book_demo<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_companies" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "search_companies",
"description": "Search the Topograph company directory by legal name or registration number. Navigates the current page to the filtered results.",
"inputSchema": {
"type": "object",
"required": [
"country"
],
"properties": {
"country": {
"type": "string",
"description": "ISO 3166-1 alpha-2 country code (e.g. FR, DE, GB).",
"pattern": "^[A-Za-z]{2}$"
},
"query": {
"type": "string",
"description": "Free-text query (legal name or identifier)."
}
}
},
"annotations": {
"readOnlyHint": true
}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });book_demo{
name: "book_demo",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));search_companies, book_demo<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_companies" tooldescription="...">
<!-- the same action, as UI -->
</form>