5 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
search_spec: 1 parameter has no description (limit); list_topics: declares no required list, so an agent cannot tell which parameters are mandatory; open_search: declares no required list, so an agent{
name: "search_spec",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}search_spec, list_topics, get_topic, open_search, open_checklist<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_spec" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "search_spec",
"description": "Search The Website Specification for matching topics. Returns ranked results with title, status, category, canonical URL, and a one-line summary. Use this when the user asks about a topic by keyword (e.g. \"CSP\", \"alt text\", \"llms.txt\").",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Free-text query.",
"minLength": 1
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 25,
"default": 5
}
},
"required": [
"query"
]
},
"annotations": {
"readOnlyHint": true
}
}search_spec: 1 parameter has no description (limit); list_topics: declares no required list, so an agent cannot tell which parameters are mandatory; open_search: declares no required list, so an agent{
name: "search_spec",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "open_search" /* short, unique, verb-based */ }search_spec, list_topics, get_topic, open_search, open_checklist<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_spec" tooldescription="...">
<!-- the same action, as UI -->
</form>