16 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: [/* ... */] });list_schedules, get_current_assignments, get_schedule_details, get_share_link, switch_schedule<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="list_schedules" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "list_schedules",
"description": "List all duty rosters (当番表) the user has. Returns each roster's name, member count, and group count; the currently displayed roster is marked. Use to see what rosters exist or before switching rosters.",
"inputSchema": {
"type": "object",
"properties": {}
},
"annotations": {
"readOnlyHint": true,
"untrustedContentHint": true
}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });update_schedule: declares no required list, so an agent cannot tell which parameters are mandatory; configure_rotation: 3 parameters have no description (skip_saturday, skip_sunday, skip_holidays){
name: "update_schedule",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}switch_schedule, advance_rotation, change_view, create_schedule, update_schedule{
name: "switch_schedule",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "switch_schedule" /* short, unique, verb-based */ }list_schedules, get_current_assignments, get_schedule_details, get_share_link, switch_schedule<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="list_schedules" tooldescription="...">
<!-- the same action, as UI -->
</form>