Google Sheets
GOOGLESHEETS_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 googlesheets
Other tools also called GOOGLESHEETS_LIST_TABLES?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"min_rows": {
"type": "integer",
"default": 2,
"minimum": 1,
"description": "Minimum number of data rows to consider a valid table"
},
"min_columns": {
"type": "integer",
"default": 1,
"minimum": 1,
"description": "Minimum number of columns to consider a valid table"
},
"min_confidence": {
"type": "number",
"default": 0.5,
"maximum": 1,
"minimum": 0,
"description": "Minimum confidence score (0.0-1.0) to consider a valid table"
},
"spreadsheet_id": {
"type": "string",
"description": "Google Sheets ID from the URL (e.g., '1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms')\nExample: \"1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms\""
}
}
}