8 tools registered. Strongest in WebMCP use, weakest in human experience.
No agent run recorded yet.
search_products, get_product_details, browse_category, compare_products, estimate_heating_need{
name: "search_products",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}search_products, get_product_details, browse_category, compare_products, estimate_heating_need<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_products" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "search_products",
"description": "Cauta produse publice in catalogul Heating Plus dupa denumire, marca, model sau cod. Foloseste acest tool pentru recomandari si verificarea preturilor afisate; nu modifica magazinul sau cosul.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 2,
"maxLength": 100,
"description": "Denumire, marca, model, cod sau expresie de cautare pentru produs."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 10,
"default": 6,
"description": "Numarul maxim de rezultate returnate."
}
},
"required": [
"query"
],
"additionalProperties": false
},
"annotations": {}
}get_site_policy: registered at 1186.2000000476837ms// Register tools as soon as they're ready, not behind a deferred/async chunk.
document.modelContext.provideContext({ tools: [/* ... */] });search_products, get_product_details, browse_category, compare_products, estimate_heating_need{
name: "search_products",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));search_products, get_product_details, browse_category, compare_products, estimate_heating_need<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_products" tooldescription="...">
<!-- the same action, as UI -->
</form>