Skip to main content
The google-docs MCP adapter wraps the Google Docs API and Drive search. Use it in workflow mcp_call steps to read document text, append LLM-generated sections, find docs by name, and produce filled copies from templates with placeholder replacement. Documents are addressed by Drive file ID.

Prerequisites

  • A Google account with Google Docs 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 Docs

On your Google connection, enable the Docs service so the account exposes Docs and Drive API scopes.
3

Add google-docs MCP instance

Go to MCP, click Add instance for google-docs. 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_document or read_document on a known doc before production workflows.

What you can build

  • Contract from template — CRM webhook with deal fields → create_document_based_on_template replacing [ClientName] placeholders → google-drive add_permission for the signer.
  • Meeting notes appendgoogle-calendar event ends → LLM summary from transcript → find_document by meeting title → append_text with dated section.
  • Weekly report draft — Postgres metrics query → LLM narrative → create_document with title and body → gmail link in status email.
  • Onboarding packet — New hire row in google-sheetscreate_document_based_on_template with role-specific values → move to HR folder via google-drive.

Tools

Example

Fill a proposal template after an LLM extracts fields from a brief:

Troubleshooting