check_dataset_quality
Call this before using any dataset. Returns a deterministic quality verdict (RELIABLE / USABLE_WITH_CLEANING / UNRELIABLE) with exact facts: completeness, nulls, type consistency, impossible values, duplicates, outliers, and (on financial/trading data) cross-source price divergence. 100% deterministic, no LLM. Free -- this MCP endpoint runs the engine directly; POST /api (plain REST, same engine) is x402-gated at $0.01/call instead. Input: rawJson (a JSON array of row objects, or a single object); datasetId is accepted but not resolvable on this deployment -- pass rawJson instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rawJson | No | The dataset: a JSON array of row objects, or a single object. | |
| datasetId | No | An Apify dataset id. Not resolvable on this deployment; pass rawJson instead. |