Google Sheets

GOOGLESHEETS_FIND_WORKSHEET_BY_TITLE

Finds a worksheet by its exact, case-sensitive title within a Google Spreadsheet; returns a boolean indicating if found and the complete metadata of the entire spreadsheet, regardless of whether the target worksheet is found.

Remote googlesheets

Other tools also called GOOGLESHEETS_FIND_WORKSHEET_BY_TITLE? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "description": "The exact, case-sensitive title of the worksheet (tab name) to find.\nExamples:\n  \"Sheet1\"\n  \"Q3 Report\"\n  \"Customer Data\""
    },
    "spreadsheet_id": {
      "type": "string",
      "description": "The unique identifier of the Google Spreadsheet. This ID is part of the spreadsheet's URL.\nExamples:\n  \"1aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789_drivE\"\n  \"your_actual_spreadsheet_id\""
    }
  }
}