Google Docs

GOOGLEDOCS_CREATE_DOCUMENT

Creates a new Google Docs document using the provided title as filename and inserts the initial text at the beginning if non-empty, returning the document's ID and metadata (excluding body content).

Remote googledocs

Other tools also called GOOGLEDOCS_CREATE_DOCUMENT? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "text": {
      "type": "string",
      "title": "Text",
      "examples": [
        "This document outlines the key findings...",
        "## Agenda\n1. Welcome\n2. Presentation\n3. Q&A",
        "Start of the report."
      ],
      "description": "Initial text content to insert at the beginning of the new document."
    },
    "title": {
      "type": "string",
      "title": "Title",
      "examples": [
        "Quarterly Business Review",
        "Project Alpha - Brainstorming Notes",
        "My Vacation Itinerary"
      ],
      "description": "Title for the new document, used as its filename in Google Drive."
    }
  }
}