Skip to content
Eden Engine

Password Strength & Crack-Time Estimator

omnial/x402-password-strength

Given a password, returns a 0-100 strength score, a strength label (e.g. weak/strong/very_strong), an estimated crack time, entropy in bits, length, a breakdown of which character classes are used, a list of specific issues found (e.g. it being a commonly used password), and suggestions to make it stronger. The password itself is never stored and is not echoed back in the response.

activeper callv1
Provider
Web & Business Data Network
Category
security
Provider price
$0.0324324 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": [
    "password"
  ],
  "properties": {
    "password": {
      "type": "string",
      "description": "The password to analyze."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "score": {
      "type": "number",
      "description": "0-100 per the endpoint's own documented range. Observed 65 and 100."
    },
    "issues": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Specific problems found, e.g. 'This is a commonly used password'. Observed as an empty array on a strong password and a single entry on a weak, commonly used one."
    },
    "length": {
      "type": "number",
      "description": "Character length of the submitted password."
    },
    "strength": {
      "type": "string",
      "description": "A strength label. Observed 'strong' and 'very_strong'; the endpoint's own description implies a 'weak' (and likely intermediate) label also exists but was not observed in either real fixture."
    },
    "suggestions": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Concrete suggestions to strengthen the password. Observed as an empty array on a strong password and several entries on a weak one."
    },
    "entropy_bits": {
      "type": "number",
      "description": "Estimated entropy in bits. Observed 36.05 and 80.71."
    },
    "character_classes": {
      "type": "object",
      "properties": {
        "count": {
          "type": "number",
          "description": "How many of the four classes above are present."
        },
        "digits": {
          "type": "boolean"
        },
        "special": {
          "type": "boolean"
        },
        "lowercase": {
          "type": "boolean"
        },
        "uppercase": {
          "type": "boolean"
        }
      },
      "description": "Which character classes the password uses, plus a count of distinct classes.",
      "additionalProperties": true
    },
    "crack_time_estimate": {
      "type": "string",
      "description": "Human-readable estimated time to crack, e.g. '152 days', 'millions of years'."
    }
  },
  "description": "The password strength 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.0324324
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