docs_create
Generate and save a new Google Doc with a specified title and initial content using the MCP Google Workspace Server for streamlined document creation.
Instructions
Create a new Google Doc
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | Initial content | |
title | Yes | Title of the document |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Initial content",
"type": "string"
},
"title": {
"description": "Title of the document",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}