{
  "slug": "csv-stats",
  "name": "gizza-ai/csv-stats",
  "version": "0.1.0",
  "title": "CSV Stats — Per-column summary statistics — gizza.ai",
  "description": "Compute per-column count, distinct, min, max, mean and sum for a CSV, in your browser. Free, private, no upload.",
  "tags": [
    "csv stats",
    "csv summary",
    "column statistics",
    "csv describe",
    "csv mean min max"
  ],
  "category": "data",
  "urls": {
    "page": "https://gizza.ai/tools/csv-stats/",
    "markdown": "https://gizza.ai/tools/csv-stats/index.md",
    "descriptor": "https://gizza.ai/tools/csv-stats/tool.json",
    "deep_link_example": "https://gizza.ai/tools/csv-stats/?data=name%2Cage%0AAda%2C36%0ABo%2C40&header=true&delimiter=%2C"
  },
  "cli": "gizza tool csv-stats \"name,age\nAda,36\nBo,40\"",
  "tool": {
    "description": "Compute per-column summary statistics for a CSV: each column's value count, empty-cell count, number of distinct values, and (for columns whose values are all numeric) min, max, mean, and sum. Returns the stats per column plus the row count. delimiter is a single char or comma/tab/semicolon/pipe. Runs locally.",
    "parameters": {
      "additionalProperties": false,
      "properties": {
        "data": {
          "description": "The CSV text.",
          "type": "string"
        },
        "delimiter": {
          "default": ",",
          "description": "Field separator: a single char or 'comma'/'tab'/'semicolon'/'pipe'. Default ','.",
          "type": "string"
        },
        "header": {
          "default": true,
          "description": "Treat the first row as a header for column names (default true).",
          "type": "boolean"
        }
      },
      "required": [
        "data"
      ],
      "type": "object"
    }
  }
}