Skip to main content
Article · Connecting systems

Google for marketing & sales: Workspace, Gemini & AppSheet

Google's marketing and sales stack now spans Gemini in Workspace, no-code AppSheet, Apps Script, BigQuery and an agent platform. Here's how the pieces fit, and how to pick the first workflow to automate.

What you're actually working with

If you run marketing or sales on Google, your automation surface is wider than the Gmail-and-Sheets you use day to day. The current stack pairs AI assistance inside your familiar apps with a no-code app builder, a scripting layer, a data warehouse and an agent platform. Knowing which layer does what is the difference between a tidy automation and a tangle of half-connected scripts.

  • Gemini in Workspace — AI bundled into Business and Enterprise Workspace editions, with side-panel help in Gmail, Docs, Sheets, Slides and Drive, plus note-taking in Meet
  • AppSheet — Google's no-code platform for building apps and automations on top of your data, now with Gemini in AppSheet
  • Apps Script — a JavaScript platform with a browser editor whose code runs on Google's servers to automate and extend Workspace
  • BigQuery — a serverless enterprise data warehouse, with Gemini in BigQuery adding a natural-language data canvas
  • Gemini Enterprise Agent Platform — the evolution of Vertex AI, for building and governing enterprise agents
  • Google Ads MCP server — an open-source bridge from the Google Ads API to LLMs like Gemini

The rebrands you need to know in 2026

Google reshuffled names through 2025 and 2026. Two changes matter most for navigating the docs. First, in January 2025 Google retired the standalone Gemini for Workspace add-on and bundled Gemini AI into Business and Enterprise Workspace editions — so the side-panel help and Meet note-taking come with your subscription rather than as a separate line item. Second, Google Cloud now calls the Gemini Enterprise Agent Platform the evolution of Vertex AI, where you build and govern enterprise agents using the Agent Development Kit, Model Garden and Agent Runtime; Google has said Vertex AI is being rebranded rather than retired, with existing workloads running unchanged. If you find an older tutorial referencing the "Gemini for Workspace add-on" or standalone "Vertex AI," you're reading something that pre-dates these moves — confirm against current docs before you build on it.

How the pieces connect

The glue is the Apps Script connector for AppSheet. It lets a no-code AppSheet automation call Apps Script functions, which in turn reach Workspace APIs — Gmail, Docs, Drive, Calendar — and BigQuery. That gives you a clean division of labour: AppSheet handles the interface and trigger, Apps Script does the work that needs code, and BigQuery holds the data that drives decisions.

Apps Script itself is the workhorse. It automates and extends Workspace through built-in services for Gmail, Calendar, Drive, Docs, Sheets, Forms and Slides, all from a browser editor with nothing to install. Think of it as the layer where a "when a lead form is submitted, draft a follow-up and log the deal" rule actually executes. For analytical work, Gemini in BigQuery adds a natural-language data canvas, data insights and SQL or Python code generation — so a marketer who isn't fluent in SQL can still interrogate the warehouse.

Connecting ads, CRM and revenue data

Your campaign and revenue data only earns its keep when it lands somewhere you can query. BigQuery is that destination — a serverless warehouse where ad spend, pipeline and revenue can sit together. Once it's there, Gemini in BigQuery lets you ask questions in plain language instead of hand-writing every query.

On the ads side, the official open-source Google Ads MCP server bridges the Google Ads API to LLMs like Gemini. It exposes list_accessible_customers, search (using GAQL, the Google Ads Query Language) and get_resource_metadata — and critically, it is strictly read-only: it cannot modify bids, pause campaigns or create assets. That read-only posture is the right starting point: you let an assistant pull and interpret campaign data without granting it the ability to change bids or budgets. If you're new to the protocol, our MCP glossary entry explains how these connectors work.

Which workflow to automate first

Don't start with the most exciting agent. Start with the workflow that is repetitive, well-bounded and already lives in your data. A practical sequence:

  • Read before you write — point the Google Ads MCP server at your campaigns first, since it can only read; you get value with zero risk of an unwanted change
  • Automate the obvious handoff — use AppSheet plus the Apps Script connector for a single high-frequency task, like turning a form submission into a logged record and a drafted email
  • Centralise the data — get ads, CRM and revenue into BigQuery so Gemini in BigQuery can answer questions across them
  • Then reach for agents — only once the simpler layers are stable should you build on the Gemini Enterprise Agent Platform

The rule of thumb: pick the workflow where you can describe the trigger and the action in one sentence, and where a mistake is easy to spot and undo. Our execution-depth spectrum can help you place each candidate.

Governance and bounded autonomy

The enemy isn't AI in your stack — it's the black box. Across these tools, design so that AI acts inside guardrails you set. The Google Ads MCP server models this well by being read-only by default; treat that as the template even where write access is available. Every automated action should be loggable as a Trigger / Action / Impact record — what fired it, what it did, and what changed — so you can audit and reverse it. When you do hand an agent on the Gemini Enterprise Agent Platform more authority, do it deliberately and within the governance controls it provides, following a guardrail-driven approach rather than flipping everything on at once.

Keep the bounded-autonomy posture consistent: read-only and auditable first, reversible always, and never an action you can't explain after the fact. You own the system; the AI operates inside it.

Last reviewed June 2026. Microsoft and Google rename and reshape these products frequently — confirm current capabilities and naming on the vendor's own docs.

Start here

Not sure which Google workflow to automate first?

Before you wire up AppSheet, Apps Script or an MCP server, find out where you're actually ready to automate. The free Readiness Score takes 4 minutes, no login, and tells you which workflow to pick first.

Get your free Readiness Score →

Keep reading