delete_rewrite
Remove specific email rewrite rules permanently on Migadu MCP Server. Input requires a list of targets with 'name' (required) and optional 'domain'. This action is irreversible.
Instructions
Delete rewrite rules. DESTRUCTIVE: Cannot be undone. List of dicts with: name (required), domain (optional).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
targets | Yes |
Input Schema (JSON Schema)
{
"properties": {
"targets": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Targets",
"type": "array"
}
},
"required": [
"targets"
],
"type": "object"
}