3 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: [/* ... */] });search_rrm_library, ask_rrm_academy, navigate_to_section{
name: "search_rrm_library",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}search_rrm_library, ask_rrm_academy, navigate_to_section<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_rrm_library" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "search_rrm_library",
"description": "Search the RRM Academy research library (4,320+ peer-reviewed articles on restorative reproductive medicine, NaProTechnology, endometriosis excision, fertility awareness-based methods, PCOS, and reproductive endocrinology). Returns ranked results with titles, authors, year, and library URLs.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Natural-language search query.",
"minLength": 2,
"maxLength": 500
},
"limit": {
"type": "integer",
"description": "Max results to return (1-20).",
"minimum": 1,
"maximum": 20,
"default": 10
}
},
"required": [
"query"
]
},
"annotations": {}
}// Use the canonical entry point - navigator.modelContext is deprecated.
document.modelContext.provideContext({ tools: [/* ... */] });search_rrm_library, ask_rrm_academy, navigate_to_section{
name: "search_rrm_library",
annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true }
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "ask_rrm_academy" /* short, unique, verb-based */ }search_rrm_library, ask_rrm_academy, navigate_to_section<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="search_rrm_library" tooldescription="...">
<!-- the same action, as UI -->
</form>