3 tools registered. Strongest in WebMCP use, weakest in human experience.
No agent run recorded yet.
search_site, search_site{
name: "search_site",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}search_site, search_site<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_site" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "search_site",
"description": "Search all static articles, blogs, and documentation on this site using keywords.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The search keyword or phrase."
}
},
"required": [
"query"
]
},
"annotations": {}
}search_site, search_site{
name: "search_site",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}duplicate tool name registered: search_sitetry {
document.modelContext.provideContext({ tools: [/* ... */] });
} catch (err) {
console.error("WebMCP registration failed", err);
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "your_tool_name" /* short, unique, verb-based */ }search_site, search_site<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_site" tooldescription="...">
<!-- the same action, as UI -->
</form>