Google Docs nodes
Tools for creating, updating, and reading Google Docs. These nodes are also served as MCP tools on the google_docs MCP server. Back to the full node reference.
Google Docs Create or Update
google_docs_create_or_update · natural-language configurable · destructive · 1 credit on Cloud
Create a new Google Docs document or update an existing one with the provided content.
Credential: Google Docs (OAuth)
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
content | string | ✓ | Text content to insert into the document. |
documentId | string | Existing Google Docs document identifier to update; leave empty to create a new document. | |
title | string | Title to use when creating a new document. |
Output
Returns a list of records — reference fields downstream as $<node>.status.
| Field | Type | Description |
|---|---|---|
status | boolean | Whether the document was created or updated successfully. |
Google Docs Read
google_docs_read_docs · natural-language configurable · read-only · idempotent · 1 credit on Cloud
Read the plain text content of a Google Docs document.
Credential: Google Docs (OAuth)
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
documentId | string | ✓ | Google Docs document identifier to read. |
Output
Returns a list of records — reference fields downstream as $<node>.text.
| Field | Type | Description |
|---|---|---|
text | string | Plain text content extracted from the document. |