addCustomer
Create a new customer in the Mews MCP server by inputting details like name, email, phone, birthdate, citizenship, and more. Streamline guest management in hospitality systems.
Instructions
Create a new customer
Input Schema
Name | Required | Description | Default |
---|---|---|---|
BirthDate | No | Birth date (ISO 8601 format) | |
BirthPlace | No | Place of birth | |
CitizenshipCountryCode | No | ISO country code of citizenship | |
No | Customer email address | ||
FirstName | No | Customer first name | |
GenderCode | No | Gender code | |
LanguageCode | No | Preferred language ISO code | |
LastName | No | Customer last name | |
LoyaltyCode | No | Loyalty program code | |
NationalityCountryCode | No | ISO country code of nationality | |
Occupation | No | Customer occupation | |
Phone | No | Customer phone number | |
SecondLastName | No | Second last name | |
TaxIdentifier | No | Tax identification number | |
Title | No | Customer title (Mr, Ms, etc.) |
Input Schema (JSON Schema)
{
"properties": {
"BirthDate": {
"description": "Birth date (ISO 8601 format)",
"type": "string"
},
"BirthPlace": {
"description": "Place of birth",
"type": "string"
},
"CitizenshipCountryCode": {
"description": "ISO country code of citizenship",
"type": "string"
},
"Email": {
"description": "Customer email address",
"format": "email",
"type": "string"
},
"FirstName": {
"description": "Customer first name",
"type": "string"
},
"GenderCode": {
"description": "Gender code",
"type": "string"
},
"LanguageCode": {
"description": "Preferred language ISO code",
"type": "string"
},
"LastName": {
"description": "Customer last name",
"type": "string"
},
"LoyaltyCode": {
"description": "Loyalty program code",
"type": "string"
},
"NationalityCountryCode": {
"description": "ISO country code of nationality",
"type": "string"
},
"Occupation": {
"description": "Customer occupation",
"type": "string"
},
"Phone": {
"description": "Customer phone number",
"type": "string"
},
"SecondLastName": {
"description": "Second last name",
"type": "string"
},
"TaxIdentifier": {
"description": "Tax identification number",
"type": "string"
},
"Title": {
"description": "Customer title (Mr, Ms, etc.)",
"type": "string"
}
},
"type": "object"
}