Skip to content
Eden Engine

DNS Propagation Checker (Compare Resolvers)

omnial/dns-propagation

Given a domain and a DNS record type (A, AAAA, CNAME, MX, NS, or TXT), queries four major public resolvers (Google 8.8.8.8, Cloudflare 1.1.1.1, Quad9 9.9.9.9, OpenDNS 208.67.222.222) and returns each resolver's answer, so you can spot propagation lag or a split-horizon DNS setup right after a DNS change.

activeper callv1
Provider
Web & Business Data Network
Category
domain-intelligence
Provider price
$0.045045 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"
    },
    "record_type": {
      "enum": [
        "A",
        "AAAA",
        "CNAME",
        "MX",
        "NS",
        "TXT"
      ],
      "type": "string",
      "default": "A"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Number of resolver entries in `items`; 4 on both fixtures observed (Google, Cloudflare, Quad9, OpenDNS)."
    },
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "error": {
            "type": [
              "string",
              "null"
            ],
            "description": "Null when the resolver returned records; a resolver-reported error code otherwise (observed as 'NXDOMAIN' when the domain does not exist)."
          },
          "records": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "The DNS record values this resolver returned for the domain (e.g. IPv4 addresses for an A query). Empty when the domain does not resolve at this resolver (observed on the nonexistent-domain fixture)."
          },
          "resolver": {
            "type": "string",
            "description": "Resolver name, e.g. 'google', 'cloudflare', 'quad9', 'opendns'."
          },
          "consistent": {
            "type": "boolean",
            "description": "Whether this resolver's answer matches the others. Observed as false on every entry in both real fixtures captured, including a case where all four resolvers independently agreed on the same NXDOMAIN error -- the genuinely-agreeing case was never observed to flip this to true, so treat it as unconfirmed rather than assuming it reliably signals agreement."
          },
          "recordType": {
            "type": "string",
            "description": "Echoes the requested record type, e.g. 'A'."
          },
          "resolverIp": {
            "type": "string",
            "description": "The public resolver's own IP address, e.g. '8.8.8.8' -- not a caller's or third party's IP."
          }
        },
        "additionalProperties": true
      },
      "description": "One entry per public resolver queried."
    }
  },
  "description": "The propagation check result, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": true
}

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.045045
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 23, 2026