Google Sheets

gs_find_replace

Find and replace text across one sheet or all sheets. Supports case-sensitive and regex search.

Remote node2flow/google-sheets

Other tools also called gs_find_replace? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "find": {
      "type": "string",
      "description": "Text to find"
    },
    "sheet_id": {
      "type": "number",
      "description": "Limit search to this sheet ID (omit for all sheets)"
    },
    "all_sheets": {
      "type": "boolean",
      "description": "Search across all sheets (default: false)"
    },
    "match_case": {
      "type": "boolean",
      "description": "Case-sensitive search (default: false)"
    },
    "replacement": {
      "type": "string",
      "description": "Text to replace with (use empty string to delete matches)"
    },
    "spreadsheet_id": {
      "type": "string",
      "description": "The spreadsheet ID"
    },
    "search_by_regex": {
      "type": "boolean",
      "description": "Treat find as a regex pattern (default: false)"
    },
    "include_formulas": {
      "type": "boolean",
      "description": "Also search within formulas (default: false)"
    },
    "match_entire_cell": {
      "type": "boolean",
      "description": "Only match if entire cell value matches (default: false)"
    }
  }
}