3 tools 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: "open_customerio_page" /* short, unique, verb-based */ }open_customerio_page, start_customerio_free_trial, contact_customerio_sales{
name: "open_customerio_page",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}open_customerio_page, start_customerio_free_trial, contact_customerio_sales<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="open_customerio_page" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "open_customerio_page",
"description": "Navigate to a key Customer.io page — product overview, pricing, AI, (developer/agent-focused), features, integrations, customer stories, security, or documentation.",
"inputSchema": {
"type": "object",
"properties": {
"page": {
"type": "string",
"enum": [
"home",
"platform",
"pricing",
"ai",
"features",
"integrations",
"customers",
"security",
"docs"
],
"description": "Which Customer.io page to open."
}
},
"required": [
"page"
],
"additionalProperties": false
},
"annotations": {}
}start_customerio_free_trial: registered at 1695.3000001907349ms// Register tools as soon as they're ready, not behind a deferred/async chunk.
document.modelContext.provideContext({ tools: [/* ... */] });// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });open_customerio_page, start_customerio_free_trial, contact_customerio_sales{
name: "open_customerio_page",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "open_customerio_page" /* short, unique, verb-based */ }open_customerio_page, start_customerio_free_trial, contact_customerio_sales<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="open_customerio_page" tooldescription="...">
<!-- the same action, as UI -->
</form>