One tool 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: [/* ... */] });send_feedback{
name: "send_feedback",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}send_feedback: feedback, reply, user{ name: "send_feedback", annotations: { untrustedContentHint: true } }send_feedback<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="send_feedback" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "send_feedback",
"description": "Sends feedback, a bug report, or a feature request to the allsvgicons team. One-way, no reply comes back through this tool. If the user expects a reply, tell them to email hi@allsvgicons.com instead (mailto:hi@allsvgicons.com).",
"inputSchema": {
"type": "object",
"properties": {
"message": {
"type": "string",
"description": "Feedback, bug report, or feature request to send to the allsvgicons team. Sent from this agent session, no context switch needed."
}
},
"required": [
"message"
]
},
"annotations": {}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });send_feedback{
name: "send_feedback",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}send_feedback: feedback, reply, user{ name: "send_feedback", annotations: { untrustedContentHint: true } }document.modelContext.dispatchEvent(new Event("toolchange"));send_feedback<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="send_feedback" tooldescription="...">
<!-- the same action, as UI -->
</form>