39 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_1, get_products, search_and_list, extract_page_listings, navigate_flight_search<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_1" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "search_1",
"description": "Search for content on this website. Search Acme Store",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query or keywords"
}
},
"required": [
"query"
]
},
"annotations": {
"readOnlyHint": false
}
}download: registered at 2021.8999998569489ms// 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: [/* ... */] });duplicate tool name registered: search_1try {
document.modelContext.provideContext({ tools: [/* ... */] });
} catch (err) {
console.error("WebMCP registration failed", err);
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "signup_sign_me_up_for_a_free_trial" /* short, unique, verb-based */ }search_1, get_products, search_and_list, extract_page_listings, navigate_flight_search<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_1" tooldescription="...">
<!-- the same action, as UI -->
</form>