Optivise

assess_listing_quality

Assesses how marketplace-ready a single product listing is — with no human file handling. Pass the product's fields as a flat object of column -> value (e.g. { "name": "...", "ean": "...", "description": "..." }). Returns an overall score (0-100), a per-dimension breakdown (identifier, title, description, brand, image, category, attributes), the specific gaps, and a recommendation. This is a free, read-only check; to actually fill the gaps and rewrite content, use the optimisation tool.

Remote Account required revuo:optivise

Remote (network-hosted) · Requires an account with the vendor · OAuth

Other tools also called assess_listing_quality? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "product": {
      "description": "The product's fields as a flat object of column name -> value.",
      "type": "object"
    },
    "marketplaceId": {
      "description": "Optional: a target marketplace id from list_supported_marketplaces, to tailor the guidance.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  },
  "required": [
    "product"
  ]
}