3 tools registered. Strongest in WebMCP use, weakest in human experience.
No agent run recorded yet.
search_docs, open_skill, get_docs_info<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_docs" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "search_docs",
"description": "Search the documentation for relevant pages and content.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query"
}
},
"required": [
"query"
],
"additionalProperties": false
},
"annotations": {
"readOnlyHint": true,
"untrustedContentHint": true
}
}get_docs_info: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "get_docs_info",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}get_docs_info{
name: "get_docs_info",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "open_skill" /* short, unique, verb-based */ }search_docs, open_skill, get_docs_info<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_docs" tooldescription="...">
<!-- the same action, as UI -->
</form>