addAddresses
Enhance account details by adding new addresses, including street, city, postal code, and country information, via the Mews MCP server for streamlined customer and company management.
Instructions
Add new addresses to accounts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Addresses | Yes |
Input Schema (JSON Schema)
{
"properties": {
"Addresses": {
"items": {
"properties": {
"AccountId": {
"description": "Account ID to add address to",
"type": "string"
},
"City": {
"description": "City",
"type": "string"
},
"CountryCode": {
"description": "ISO country code",
"type": "string"
},
"CountrySubdivisionCode": {
"description": "State/province code",
"type": "string"
},
"Line1": {
"description": "First line of address",
"type": "string"
},
"Line2": {
"description": "Second line of address",
"type": "string"
},
"PostalCode": {
"description": "Postal/ZIP code",
"type": "string"
}
},
"required": [
"AccountId"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"Addresses"
],
"type": "object"
}