{
  "name": "GM Pet Sitter",
  "description": "Premium cat and dog care, cat behavior consultancy, aromatherapy, and holistic pet care services in Istanbul. Led by expert Tülay Kayalar Durukan.",
  "url": "https://gmpetsitter.com",
  "tools": [
    {
      "name": "submit_booking_request",
      "description": "Submit a pet care service booking or consultation request to GM Pet Sitter. The form supports cat and dog care, behavioral consultancy, aromatherapy, Healy holistic support, play therapy, spa, boarding, clinical support, and VIP pet transport services.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "fullName": {
            "type": "string",
            "description": "Full name of the pet owner"
          },
          "emailAddress": {
            "type": "string",
            "format": "email",
            "description": "Email address of the pet owner"
          },
          "phoneNumber": {
            "type": "string",
            "description": "Phone number with country code (e.g. +90 530 238 12 99)"
          },
          "petName": {
            "type": "string",
            "description": "Name of the pet"
          },
          "petDetails": {
            "type": "string",
            "description": "Pet type, breed, and age (e.g. '2 year old Siamese Cat')"
          },
          "vetCheck": {
            "type": "string",
            "enum": ["yes", "no"],
            "description": "Whether the pet had a vet check in the last 6 months"
          },
          "startDate": {
            "type": "string",
            "format": "date",
            "description": "Service start date (YYYY-MM-DD)"
          },
          "endDate": {
            "type": "string",
            "format": "date",
            "description": "Service end date (YYYY-MM-DD)"
          },
          "districtSelect": {
            "type": "string",
            "description": "District in Istanbul where service is needed",
            "enum": [
              "acıbadem", "kadıköy", "altunizade", "maltepe", "sarıyer",
              "beşiktaş", "şişli", "göktürk", "ataşehir", "üsküdar",
              "beylikdüzü", "bağcılar", "bakırköy", "büyükçekmece",
              "çekmeköy", "fatih", "gaziosmanpaşa", "kartal", "pendik",
              "sultanbeyli", "tuzla", "zeytinburnu"
            ]
          },
          "fullAddress": {
            "type": "string",
            "description": "Full address including street, building and apartment number"
          },
          "services": {
            "type": "array",
            "description": "One or more requested services",
            "items": {
              "type": "string",
              "enum": [
                "sitting",
                "clinical",
                "play_therapy",
                "boarding",
                "spa",
                "behavioral",
                "transfer",
                "aromatherapy",
                "healy"
              ]
            },
            "minItems": 1
          },
          "behaviorComplaint": {
            "type": "string",
            "description": "Specific behavioral issue (required when 'behavioral' service is selected)",
            "enum": ["aggression", "litter", "anxiety", "other"]
          },
          "messageText": {
            "type": "string",
            "description": "Additional notes or special requests"
          },
          "lang": {
            "type": "string",
            "enum": ["tr", "en"],
            "description": "Preferred language for communication",
            "default": "tr"
          }
        },
        "required": [
          "fullName",
          "emailAddress",
          "phoneNumber",
          "petName",
          "petDetails",
          "vetCheck",
          "startDate",
          "endDate",
          "districtSelect",
          "fullAddress",
          "services"
        ]
      }
    }
  ]
}
