docs_create
Generate a new Google Doc with a specified title and optional initial content using the MCP Google Suite server for secure Google Workspace integration.
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"
}