Google Workspace · Spreadsheets
GOOGLE_SHEETS_UPDATE_VALUES
Update a cell range in a Google Sheet. Use only after explicit user approval. Returns { spreadsheetId, updatedRange, updatedRows, updatedColumns, updatedCells }.
- Provider
- Google Workspace
- Access
- Write
- Category
- Spreadsheets
- Version
- v1
Input schema
{
"type": "object",
"properties": {
"spreadsheetId": {
"type": "string",
"description": "The spreadsheet ID from its URL."
},
"range": {
"type": "string",
"description": "A1 range, e.g. Sheet1!A1:C10."
},
"values": {
"type": "array",
"items": {
"type": "array",
"items": {}
},
"description": "2D array of values to write."
},
"valueInputOption": {
"type": "string",
"enum": [
"RAW",
"USER_ENTERED"
],
"description": "How input data should be interpreted (default USER_ENTERED)."
}
},
"required": [
"spreadsheetId",
"range",
"values"
],
"additionalProperties": false
}How to call it
Expose this tool to any MCP-capable agent (Claude, GPT, or your own) through CybrLink's MCP server. The agent calls google_sheets_update_values with arguments matching the schema above.
CybrLink validates the input, injects the connected Google Workspace credentials server-side, and runs a single scoped provider API call through the shared proxy — the same guarded path as the generic call_api tool. The raw secret never reaches the model, and the response is trimmed to just the fields the agent needs.
Write action — gate behind explicit user approval and write scope.
Frequently asked
- How do I let an AI agent google sheets update values?
- Connect Google Workspace to CybrLink, then expose the `google_sheets_update_values` tool to any MCP-capable agent (Claude, GPT, or a custom framework). The agent calls it with typed arguments; CybrLink injects the Google Workspace credential server-side and runs one scoped API call. Update a cell range in a Google Sheet. Use only after explicit user approval. Returns { spreadsheetId, updatedRange, updatedRows, updatedColumns, updatedCells }.
- Does the AI model see my Google Workspace credentials when using GOOGLE_SHEETS_UPDATE_VALUES?
- No. CybrLink stores the credential in a token vault and injects it on the server for each call, so the model can take this action in Google Workspace without the OAuth token or API key ever entering its context.