Prerequisites
- A Google account with Google Sheets and Drive access
- A Google Workspace connection in AgentRuntime (OAuth via the Google account card on Connections)
- project_contributor access in your workspace
Connect in AgentRuntime
1
Connect Google
On Connections, use the Google account card and complete OAuth. See Google Workspace setup and Connections.
2
Enable Sheets
On your Google connection, enable the Sheets service so the account exposes Sheets and Drive API scopes.
3
Add google-sheets MCP instance
Go to MCP, click Add instance for google-sheets. Open Instance config, wire your Google connection, and set the profile active.
4
Test in a workflow
Smoke-test with mcp_call in Workflow Studio. Test with
find_spreadsheets or get_many_rows on a known sheet before production workflows.What you can build
- Lead intake log — Webhook from a form →
find_spreadsheets→insert_rowwith mapped fields → gmail notify sales when status ishot. - Ops dashboard refresh — Postgres query →
insert_multiple_rowswithinput_type: json→format_rowto highlight overdue rows. - Monthly report export —
get_many_rowsfrom a summary tab →export_sheetas CSV → google-driveupload_fileto an archive folder. - Inventory sync — ERP webhook →
find_rowsby SKU →update_rowif found elseinsert_row→clear_sheeton staging tab after validation.