6 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: [/* ... */] });get_mailbox_status, list_messages, read_message, filter_by_date, clear_filters{
name: "get_mailbox_status",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}get_mailbox_status, list_messages, read_message, filter_by_date, clear_filters<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_mailbox_status" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "get_mailbox_status",
"description": "Report whether an MBOX file is open in this tab and what is in it: message count, date span, how many messages the current filters match, and whether the mailbox is fully readable. Call this first.",
"inputSchema": {
"type": "object",
"properties": {}
},
"annotations": {}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });list_messages: declares no required list, so an agent cannot tell which parameters are mandatory; filter_by_date: declares no required list, so an agent cannot tell which parameters are mandatory; sca{
name: "list_messages",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}get_mailbox_status, list_messages, read_message, filter_by_date, clear_filters{
name: "get_mailbox_status",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "scan_messages" /* short, unique, verb-based */ }get_mailbox_status, list_messages, read_message, filter_by_date, clear_filters<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="get_mailbox_status" tooldescription="...">
<!-- the same action, as UI -->
</form>