Overview
Integrate Google Sheets to manage spreadsheets, manipulate data, and automate reporting from CORE. Access 8 essential tools for complete spreadsheet management including data reading, writing, formatting, and batch operations without leaving your workspace.Setup Guide
Authentication Type: OAuth 2.0 (Google)
How to Connect
- Navigate to CORE Dashboard → Integrations
- Click on the Google Sheets card
- Click Connect to authorize CORE
- You’ll be redirected to Google to authorize the application
- Grant the required permissions
- You’ll be redirected back to CORE once connected
Use Cases
When you ask CORE to perform Google Sheets tasks, it uses MCP tools to execute your requests:Read and Analyze Data
Read and Analyze Data
Scenario: Extract data from spreadsheets for analysis, reporting, or processingThe agent will:
- Use
list_spreadsheetsto find the spreadsheet - Use
list_sheetsto discover available sheets - Use
read_rangeto get the data you need
Update Spreadsheets
Update Spreadsheets
Scenario: Modify spreadsheet data programmatically with single or batch updatesThe agent will:
- Use
write_to_cellfor updating single values - Use
write_rangefor updating multiple cells at once - Use
batch_updatefor complex operations with formatting
Create Reports
Create Reports
Scenario: Generate new spreadsheets for reports, exports, or data organizationThe agent will:
- Use
create_spreadsheetwith appropriate sheet titles - Use
write_rangeto add headers and initial data - Use
append_rangeto add records as they’re generated
Data Automation
Data Automation
Scenario: Automate repetitive data tasks and keep spreadsheets synchronizedThe agent will:
- Use
read_rangeto get current data - Process the data with business logic
- Use
write_rangeorappend_rangeto update the spreadsheet
Batch Operations
Batch Operations
Scenario: Handle large volumes of data efficiently with batch append and update operationsThe agent will:
- Use
append_rangeto add multiple rows of data efficiently - Use
batch_updateto apply formatting and sorting in one operation
Scopes
https://www.googleapis.com/auth/spreadsheets- Read and write access to spreadsheetshttps://www.googleapis.com/auth/drive.readonly- Read-only access to Google Drive for file discovery
Available MCP Tools
The Google Sheets integration provides 8 tools for comprehensive spreadsheet management:- Spreadsheet Discovery
- Data Reading
- Data Writing
- Spreadsheet Management
| Tool Name | Description |
|---|---|
list_spreadsheets | Lists all Google Sheets spreadsheets in the user’s Google Drive with metadata including creation and modification times |
list_sheets | Lists all sheets within a spreadsheet with metadata (sheetId, title, index, row count, column count). Does not include cell data. Use this to discover available sheets before fetching data. |
