purchase_domains
Buy domains through Zapmail MCP Server using wallet funds or payment links for domain registration and management.
Instructions
Purchase one or more domains. Prefers wallet funds if sufficient; otherwise returns a payment link.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domains | Yes | Domains to purchase. | |
preferWallet | No | Prefer using wallet funds first. | |
years | No | Registration term. |
Input Schema (JSON Schema)
{
"properties": {
"domains": {
"description": "Domains to purchase.",
"items": {
"type": "string"
},
"type": "array"
},
"preferWallet": {
"default": true,
"description": "Prefer using wallet funds first.",
"type": "boolean"
},
"years": {
"default": 1,
"description": "Registration term.",
"type": "number"
}
},
"required": [
"domains"
],
"type": "object"
}