Google Super

GOOGLESUPER_LIST_TABLES

This action is used to list all tables in a Google Spreadsheet, call this action to get the list of tables in a spreadsheet. Discover all tables in a Google Spreadsheet by analyzing sheet structure and detecting data patterns. Uses heuristic analysis to find header rows, data boundaries, and table structures.

Remote googlesuper

Other tools also called GOOGLESUPER_LIST_TABLES? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "min_rows": {
      "type": "integer",
      "title": "Min Rows",
      "default": 2,
      "minimum": 1,
      "description": "Minimum number of data rows to consider a valid table"
    },
    "min_columns": {
      "type": "integer",
      "title": "Min Columns",
      "default": 1,
      "minimum": 1,
      "description": "Minimum number of columns to consider a valid table"
    },
    "min_confidence": {
      "type": "number",
      "title": "Min Confidence",
      "default": 0.5,
      "maximum": 1,
      "minimum": 0,
      "description": "Minimum confidence score (0.0-1.0) to consider a valid table"
    },
    "spreadsheet_id": {
      "type": "string",
      "title": "Spreadsheet Id",
      "examples": [
        "1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms"
      ],
      "description": "Google Sheets ID from the URL (e.g., '1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms')"
    }
  }
}