5 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_norbelys, get_pricing, get_api_catalog, list_free_tools, get_documentation_links{
name: "search_norbelys",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}search_norbelys, get_pricing, get_api_catalog, list_free_tools, get_documentation_links<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_norbelys" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "search_norbelys",
"description": "Search Norbelys product pages, docs and blog by a natural-language query.",
"inputSchema": {
"properties": {
"query": {
"description": "What to look for",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
},
"annotations": {}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });list_free_tools: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "list_free_tools",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}search_norbelys, get_pricing, get_api_catalog, list_free_tools, get_documentation_links{
name: "search_norbelys",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));search_norbelys, get_pricing, get_api_catalog, list_free_tools, get_documentation_links<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_norbelys" tooldescription="...">
<!-- the same action, as UI -->
</form>