create_identity
Set up email identities on Migadu MCP Server by specifying target addresses, mailboxes, names, passwords, and optional domains in a structured format.
Instructions
Create email identities. List of dicts with: target, mailbox, name, password (required), domain (optional).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
identities | Yes |
Input Schema (JSON Schema)
{
"properties": {
"identities": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Identities",
"type": "array"
}
},
"required": [
"identities"
],
"type": "object"
}