{
  "$schema": "https://webmcp.org/schemas/webmcp.json",
  "name": "OZZANA Studio",
  "version": "1.0.0",
  "description": "WebMCP tools manifest for OZZANA - Neuroarchitecture & Luxury Design Studio",
  "url": "https://ozzana.com",
  "tools": [
    {
      "name": "request_quick_feasibility",
      "type": "declarative",
      "description": "Solicitud rapida de viabilidad desde la pagina de inicio. Incluye nombre, telefono, ubicacion y vision.",
      "endpoint": {
        "url": "https://ozzana.com/",
        "method": "POST",
        "contentType": "application/x-www-form-urlencoded"
      },
      "trigger": {
        "selector": "#feasibility-form",
        "page": "https://ozzana.com/"
      },
      "parameters": {
        "type": "object",
        "properties": {
          "name": { "type": "string", "description": "Nombre completo del cliente." },
          "phone": { "type": "string", "description": "Numero de telefono con codigo de pais." },
          "location": { "type": "string", "description": "Ubicacion geografica del inmueble." },
          "vision": { "type": "string", "description": "Descripcion breve de la vision del proyecto." }
        },
        "required": ["name", "phone", "location", "vision"]
      },
      "confirmation": {
        "selector": "#home-form-success",
        "expectedText": "Gracias por tu solicitud"
      }
    },
    {
      "name": "request_project_feasibility",
      "type": "declarative",
      "description": "Solicitar un estudio de viabilidad para un proyecto residencial o comercial de neuroarquitectura y diseno interior de lujo.",
      "endpoint": {
        "url": "https://ozzana.com/contacto",
        "method": "POST",
        "contentType": "application/x-www-form-urlencoded"
      },
      "trigger": {
        "selector": "#project-feasibility-form",
        "page": "https://ozzana.com/contacto"
      },
      "parameters": {
        "type": "object",
        "properties": {
          "name": { "type": "string", "description": "Nombre completo del cliente." },
          "email": { "type": "string", "format": "email", "description": "Correo electronico de contacto." },
          "phone": { "type": "string", "description": "Numero de telefono con codigo de pais." },
          "location": { "type": "string", "enum": ["Medellin", "Llanogrande", "Guatape", "Exterior", "Otros"], "description": "Ubicacion geografica del inmueble." },
          "status": { "type": "string", "enum": ["Terreno virgen", "En construccion", "Remodelacion total", "Interiorismo"], "description": "Estado actual del sitio." },
          "budget": { "type": "string", "enum": ["< $100M", "$100M - $300M", "> $300M"], "description": "Rango estimado de inversion en COP." },
          "vision": { "type": "string", "description": "Descripcion de la vision del proyecto." }
        },
        "required": ["name", "email", "phone", "location", "status", "budget", "vision"]
      },
      "confirmation": {
        "selector": "#form-success",
        "expectedText": "Gracias por tu solicitud"
      }
    },
    {
      "name": "request_neuroarchitecture_consultancy",
      "type": "declarative",
      "description": "Solicitar una consultoria o diagnostico profesional de neuroarquitectura.",
      "endpoint": {
        "url": "https://ozzana.com/consultoria",
        "method": "POST",
        "contentType": "application/x-www-form-urlencoded"
      },
      "trigger": {
        "selector": "#diagnostic-form",
        "page": "https://ozzana.com/consultoria"
      },
      "parameters": {
        "type": "object",
        "properties": {
          "name": { "type": "string", "description": "Nombre completo del solicitante." },
          "email": { "type": "string", "format": "email", "description": "Correo electronico profesional." }
        },
        "required": ["name", "email"]
      },
      "confirmation": {
        "selector": "#diag-form-success",
        "expectedText": "Gracias por tu solicitud"
      }
    }
  ],
  "agentPolicy": {
    "allow": true,
    "rateLimit": {
      "maxRequests": 10,
      "perPeriod": "1h"
    },
    "userAgentAllowlist": ["GPTBot", "ClaudeBot", "Google-Extended", "PerplexityBot", "Applebot-Extended"]
  }
}
