9 tools registered. Strongest in usefulness, weakest in human experience.
No agent run recorded yet.
// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });searchPosts, askBlogQuestion, requestConsultation, listLatestPosts, getPostContent<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="searchposts" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "searchPosts",
"description": "Semantische Suche über alle Beiträge des KI-Fachmagazins Beckmann (DE/EN). Liefert passende Artikel mit Titel, URL und Snippet.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Suchanfrage (2–200 Zeichen)"
},
"lang": {
"type": "string",
"enum": [
"de",
"en"
],
"description": "Optional: Sprache filtern"
},
"limit": {
"type": "number",
"description": "Max. Treffer (1–20, Default 8)"
}
},
"required": [
"query"
]
},
"annotations": {
"readOnlyHint": true
}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });listLatestPosts: declares no required list, so an agent cannot tell which parameters are mandatory{
name: "listLatestPosts",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "askblogquestion" /* short, unique, verb-based */ }searchPosts, askBlogQuestion, requestConsultation, listLatestPosts, getPostContent<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="searchposts" tooldescription="...">
<!-- the same action, as UI -->
</form>