2 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
search_blog, search_help{
name: "search_blog",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}search_blog, search_help<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_blog" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "search_blog",
"description": "Search the dailybot.com blog by keyword. Returns matching blog posts with title, description, slug, publish date, tags, and hero image across English, Spanish, and Portuguese.",
"inputSchema": {
"type": "object",
"properties": {
"q": {
"type": "string",
"description": "Keyword or phrase to search for."
},
"lang": {
"type": "string",
"enum": [
"en",
"es",
"pt"
],
"description": "Optional language filter. If omitted, the bridge uses the current page language."
}
},
"required": [
"q"
]
},
"annotations": {}
}search_help: 1 parameter has no description (lang){
name: "search_help",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}search_blog, search_help{
name: "search_blog",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));search_blog, search_help<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_blog" tooldescription="...">
<!-- the same action, as UI -->
</form>