{
  "$schema": "https://webmcp.org/schemas/v1/webmcp.json",
  "name": "Elite Teen Counseling",
  "description": "Teen and family therapy practice tools and navigation",
  "version": "1.0.0",
  "tools": [
    {
      "name": "book_consultation",
      "description": "Book a free 20-minute consultation for teen therapy, parent coaching, or family therapy",
      "parameters": {
        "type": "object",
        "properties": {
          "parentName": { "type": "string", "description": "Full name of parent/guardian" },
          "teenName": { "type": "string", "description": "Full name of teen" },
          "teenAge": { "type": "number", "description": "Age of teen" },
          "email": { "type": "string", "format": "email", "description": "Contact email address" },
          "phone": { "type": "string", "description": "Contact phone number" },
          "service": { "type": "string", "enum": ["Teen Individual Therapy", "Parent Coaching", "Family Therapy", "California Online Therapy"] },
          "concerns": { "type": "string", "description": "Main concerns or reasons for reaching out" }
        },
        "required": ["parentName", "email", "phone"]
      }
    },
    {
      "name": "contact_practice",
      "description": "Send a general inquiry to the clinical team at Elite Teen Counseling",
      "parameters": {
        "type": "object",
        "properties": {
          "name": { "type": "string", "description": "Name of inquirer" },
          "email": { "type": "string", "format": "email", "description": "Email address" },
          "message": { "type": "string", "description": "Inquiry message" }
        },
        "required": ["name", "email", "message"]
      }
    }
  ],
  "forms": [
    {
      "id": "consultation-form",
      "name": "Free Consultation Booking Form",
      "action": "/api/v1/consultations",
      "method": "POST"
    },
    {
      "id": "contact-form",
      "name": "General Contact Form",
      "action": "/api/v1/contact",
      "method": "POST"
    }
  ]
}
