create-address
Generate accurate shipping addresses by inputting name, street, city, country, and zip details. Simplify address creation for orders and subscriptions on Terminal.shop MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | ||
country | Yes | ||
name | Yes | ||
phone | No | ||
province | No | ||
street1 | Yes | ||
street2 | No | ||
zip | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"city": {
"type": "string"
},
"country": {
"maxLength": 2,
"minLength": 2,
"type": "string"
},
"name": {
"type": "string"
},
"phone": {
"type": "string"
},
"province": {
"type": "string"
},
"street1": {
"type": "string"
},
"street2": {
"type": "string"
},
"zip": {
"type": "string"
}
},
"required": [
"name",
"street1",
"city",
"country",
"zip"
],
"type": "object"
}