4 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
list_pages: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "list_pages",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}list_pages, navigate, find_blog_posts, find_relevant_experience{
name: "list_pages",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}list_pages, navigate, find_blog_posts, find_relevant_experience<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="list_pages" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "list_pages",
"description": "Lists navigable site pages and recent blog posts with paths.",
"inputSchema": {
"type": "object",
"properties": {
"section": {
"type": "string",
"enum": [
"site",
"blog",
"all"
],
"description": "Which section to list. Defaults to all."
}
},
"additionalProperties": false
},
"annotations": {}
}list_pages: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "list_pages",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}list_pages, navigate, find_blog_posts, find_relevant_experience{
name: "list_pages",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "navigate" /* short, unique, verb-based */ }list_pages, navigate, find_blog_posts, find_relevant_experience<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="list_pages" tooldescription="...">
<!-- the same action, as UI -->
</form>