{
  "mcpVersion": "0.1",
  "name": "Vorsorge-Spezi",
  "description": "WebMCP Service für Versicherungsmakler Vorsorge-Spezi",
  "url": "https://vorsorge-spezi.de",
  "tools": [
    {
      "name": "get_services",
      "description": "Ruft verfügbare Versicherungsservices ab",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "description": "Kategorie: altersvorsorge, bu, krankenversicherung, familie, gewerbe"
          }
        }
      }
    },
    {
      "name": "get_contact_form",
      "description": "Ruft Kontaktformular-Struktur ab für KI-Agenten",
      "inputSchema": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Formulartyp: kontakt, bu_anfrage, zahnzusatz_anfrage"
          }
        }
      }
    },
    {
      "name": "get_locations",
      "description": "Ruft verfügbare Servicegebiete und Ortsseiten ab",
      "inputSchema": {
        "type": "object"
      }
    },
    {
      "name": "get_faq",
      "description": "Ruft häufig gestellte Fragen zu Versicherungen ab",
      "inputSchema": {
        "type": "object",
        "properties": {
          "topic": {
            "type": "string",
            "description": "Thema für FAQs"
          }
        }
      }
    }
  ],
  "formSchemas": [
    {
      "id": "kontakt",
      "name": "Allgemeine Kontaktanfrage",
      "fields": [
        {"name": "vorname", "type": "text", "required": true, "label": "Vorname"},
        {"name": "nachname", "type": "text", "required": true, "label": "Nachname"},
        {"name": "email", "type": "email", "required": true, "label": "E-Mail"},
        {"name": "telefon", "type": "tel", "required": false, "label": "Telefon"},
        {"name": "nachricht", "type": "textarea", "required": true, "label": "Nachricht"}
      ]
    },
    {
      "id": "bu_anfrage",
      "name": "Berufsunfähigkeitsversicherung Anfrage",
      "fields": [
        {"name": "vorname", "type": "text", "required": true, "label": "Vorname"},
        {"name": "nachname", "type": "text", "required": true, "label": "Nachname"},
        {"name": "email", "type": "email", "required": true, "label": "E-Mail"},
        {"name": "geburtsdatum", "type": "date", "required": true, "label": "Geburtsdatum"},
        {"name": "beruf", "type": "text", "required": true, "label": "Beruf/Branche"},
        {"name": "nachricht", "type": "textarea", "required": false, "label": "Zusätzliche Informationen"}
      ]
    },
    {
      "id": "zahnzusatz_anfrage",
      "name": "Zahnzusatzversicherung Anfrage",
      "fields": [
        {"name": "vorname", "type": "text", "required": true, "label": "Vorname"},
        {"name": "nachname", "type": "text", "required": true, "label": "Nachname"},
        {"name": "email", "type": "email", "required": true, "label": "E-Mail"},
        {"name": "geburtsdatum", "type": "date", "required": true, "label": "Geburtsdatum"},
        {"name": "zahnstatus", "type": "select", "required": true, "label": "Zahngesundheit", "options": ["Sehr gut", "Gut", "Befriedigend", "Geplante Behandlung"]},
        {"name": "nachricht", "type": "textarea", "required": false, "label": "Zusätzliche Informationen"}
      ]
    }
  ]
}
