{
  "name": "ParentMD",
  "description": "ParentMD is a pediatric health platform company. Board-certified pediatricians author and review its guidance for new parents; health systems and employers deliver it white-labeled under brands families already trust.",
  "version": "1.0.0",
  "website": "https://parentmd.com",
  "contact": "hello@parentmd.com",
  "docs": "https://parentmd.com/llms.txt",
  "tools": [
    {
      "name": "get_company_facts",
      "description": "Get structured facts about ParentMD: what the company does, founding, headquarters, leadership, products, and contact details.",
      "inputSchema": { "type": "object", "properties": {}, "additionalProperties": false }
    },
    {
      "name": "list_products",
      "description": "List ParentMD's products (Baby Playbook, Playbook Chat, Baby Marketplace) with status, URLs, and summaries.",
      "inputSchema": { "type": "object", "properties": {}, "additionalProperties": false }
    },
    {
      "name": "get_partnership_options",
      "description": "Get how health systems, employers, and investors can partner with ParentMD, including launch details and how to start the conversation.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "audience": {
            "type": "string",
            "enum": ["health_system", "employer", "investor", "other"],
            "description": "Which kind of organization is asking."
          }
        },
        "additionalProperties": false
      }
    },
    {
      "name": "send_contact_message",
      "description": "Send a message to the ParentMD team on behalf of the user. Use when the user wants to contact ParentMD, ask a question, or start a partnership conversation. Confirm the message with the user before sending.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "name": { "type": "string", "description": "The sender's name.", "maxLength": 255 },
          "email": { "type": "string", "format": "email", "description": "The sender's email address for the reply.", "maxLength": 255 },
          "message": { "type": "string", "description": "The message to send to the ParentMD team.", "maxLength": 4800 }
        },
        "required": ["name", "email", "message"],
        "additionalProperties": false
      }
    }
  ]
}
