One tool registered. Strongest in WebMCP use, weakest in human experience.
No agent run recorded yet.
// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });{ name: "site_info" /* short, unique, verb-based */ }site_info<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="site_info" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "site_info",
"description": "Return basic metadata about this Telnyx site (domain, public documentation URL).",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
},
"annotations": {
"readOnlyHint": true
}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "site_info" /* short, unique, verb-based */ }site_info<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="site_info" tooldescription="...">
<!-- the same action, as UI -->
</form>