Skip to content
Eden Engine

Email Deliverability Check (SPF, DKIM, DMARC, MX, Blacklists by Domain)

omnial/x402-email-deliverability-check

Given a domain, checks its SPF, DKIM, DMARC, and MX DNS configuration plus common email blacklists, and returns a 0-100 deliverability score with a letter grade, the specific issues found, and plain-language recommendations to fix them.

activeper callv1
Provider
Web & Business Data Network
Category
company-enrichment
Provider price
$0.081081 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "domain"
  ],
  "properties": {
    "domain": {
      "type": "string"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "spf": {
      "type": "object",
      "properties": {
        "valid": {
          "type": "boolean"
        },
        "exists": {
          "type": "boolean"
        },
        "record": {
          "type": "string",
          "description": "The raw SPF DNS TXT record."
        },
        "mechanism": {
          "type": "string",
          "description": "Human-readable summary of the record's terminal mechanism, e.g. '~all (soft fail)', '-all (hard fail)'."
        }
      },
      "additionalProperties": true
    },
    "dkim": {
      "type": "object",
      "properties": {
        "detected": {
          "type": "boolean"
        },
        "selector_found": {
          "type": [
            "string",
            "null"
          ],
          "description": "The DKIM selector found, or null when no DKIM record was detected."
        }
      },
      "additionalProperties": true
    },
    "dmarc": {
      "type": "object",
      "properties": {
        "exists": {
          "type": "boolean"
        },
        "policy": {
          "type": "string",
          "description": "e.g. 'reject'."
        },
        "record": {
          "type": "string",
          "description": "The raw DMARC DNS TXT record, published by the domain owner for anyone to query over DNS. May embed a `rua=mailto:` reporting address that the domain owner chose to publish publicly for aggregate-report delivery."
        }
      },
      "additionalProperties": true
    },
    "grade": {
      "type": "string",
      "description": "Letter grade derived from score. Observed: 'A', 'B'."
    },
    "score": {
      "type": "number",
      "description": "0-100 deliverability score. Observed: 80, 100."
    },
    "domain": {
      "type": "string",
      "description": "The domain that was checked."
    },
    "issues": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Plain-language problems found. Empty when the domain has no issues (observed on a fully-configured domain)."
    },
    "mx_records": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "exchange": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          }
        },
        "additionalProperties": true
      },
      "description": "The domain's mail exchange records. One fixture shows a single real MX host; the other shows a single entry with an empty exchange string and priority 0 for a domain with no real mail server -- an empty `exchange` does not mean the array itself is empty."
    },
    "blacklisted": {
      "type": "boolean",
      "description": "True if the domain appears on any checked blacklist."
    },
    "recommendations": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Plain-language fixes for each issue. Empty when `issues` is empty."
    },
    "blacklists_checked": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "listed": {
            "type": "boolean"
          }
        },
        "additionalProperties": true
      },
      "description": "3 entries on both real calls observed (zen.spamhaus.org, bl.spamcop.net, b.barracudacentral.org)."
    }
  },
  "description": "The deliverability report, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": false
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.081081
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 15, 2026