4 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
get_site_info, list_posts, search_posts<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_site_info" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "get_site_info",
"description": "Get an overview of cloverbase.com: what the site is about and its key pages with URLs. Returns JSON.",
"inputSchema": {
"type": "object",
"properties": {}
},
"annotations": {
"readOnlyHint": true
}
}list_posts: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "list_posts",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}subscribe_newsletter: review, user, email{ name: "subscribe_newsletter", annotations: { untrustedContentHint: true } }document.modelContext.dispatchEvent(new Event("toolchange"));get_site_info, list_posts, search_posts<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_site_info" tooldescription="...">
<!-- the same action, as UI -->
</form>