R

rrmacademy.org

RRM Academy: 4,053+ scholarly works, NaProTechnology-grounded courses, and clinical guidance from Dr. Naomi Whittaker, MD, on Restorative Reproductive Medicine for patients and clinicians.

1read
2action
https://rrmacademy.org

live · Health & Education · JSON · API for agents

Tools 3 tools

search_rrm_libraryread

Search the RRM Academy research library (4,050+ 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.

View tool JSON
{
  "name": "search_rrm_library",
  "kind": "read",
  "impl": "imperative",
  "description": "Search the RRM Academy research library (4,050+ 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"
    ]
  },
  "page": "/"
}
ask_rrm_academyaction

Ask a natural-language question about restorative reproductive medicine. Answered by RRM Academy's conversational AI grounded in the research library. Requires authentication; anonymous callers receive a sign-in URL.

View tool JSON
{
  "name": "ask_rrm_academy",
  "kind": "action",
  "impl": "imperative",
  "description": "Ask a natural-language question about restorative reproductive medicine. Answered by RRM Academy's conversational AI grounded in the research library. Requires authentication; anonymous callers receive a sign-in URL.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "question": {
        "type": "string",
        "description": "Natural-language question.",
        "minLength": 3,
        "maxLength": 500
      }
    },
    "required": [
      "question"
    ]
  },
  "page": "/"
}
navigate_to_sectionaction

Navigate this browser tab to a major RRM Academy section (pillar guides, library, FAQs, commentary, courses, glossary, community).

View tool JSON
{
  "name": "navigate_to_section",
  "kind": "action",
  "impl": "imperative",
  "description": "Navigate this browser tab to a major RRM Academy section (pillar guides, library, FAQs, commentary, courses, glossary, community).",
  "inputSchema": {
    "type": "object",
    "properties": {
      "section": {
        "type": "string",
        "enum": [
          "home",
          "library",
          "faqs",
          "commentary",
          "courses",
          "community",
          "donate",
          "contact",
          "what-is-rrm",
          "naprotechnology",
          "femm",
          "neofertility",
          "common-questions-about-rrm",
          "glossary",
          "art-registries-and-codes",
          "pcos",
          "endometriosis",
          "endometritis",
          "miscarriage"
        ],
        "description": "Named site section."
      }
    },
    "required": [
      "section"
    ]
  },
  "page": "/"
}