get_rewrite
Retrieve detailed configuration of rewrite rules for email domains using the rule name/slug. Essential for managing email routing and automation in Migadu MCP Server.
Instructions
Get detailed rewrite rule configuration. Requires rule name/slug.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | No | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Domain"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}