ai.mcpanalytics/analytics

datasets_read

Read, filter, and search dataset rows. Use 'search' to find text across all columns, 'filters' for multi-column AND filtering, or filter_column for simple lookups. For row-level questions ('find rows where X'), use this — not an analysis tool.

Remote mcpanalytics/mcp-analytics

Other tools also called datasets_read? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "mode": {
      "type": "string",
      "description": "full, metadata, head, tail, sample"
    },
    "uuid": {
      "type": "string",
      "description": "Dataset UUID"
    },
    "search": {
      "type": "string",
      "description": "Search text across ALL columns (case-insensitive)"
    },
    "secret": {
      "type": "string",
      "description": "Dataset secret key"
    },
    "columns": {
      "type": "array",
      "description": "Columns to return"
    },
    "filters": {
      "type": "array",
      "description": "Multi-filter [{column, operator, value}]. Operators: eq, ne, gt, lt, contains, not_contains, regex, starts_with, ends_with, is_null, not_null"
    },
    "sort_by": {
      "type": "string"
    },
    "sort_order": {
      "type": "string",
      "default": "asc"
    },
    "sample_size": {
      "type": "integer",
      "default": 10
    },
    "filter_value": {},
    "filter_column": {
      "type": "string"
    },
    "filter_operator": {
      "type": "string",
      "default": "eq"
    }
  }
}