create_google_document
Generate and store new Google Docs by providing a title and optional initial content. Integrates with the Google Docs MCP Server for streamlined document creation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | ドキュメントの初期内容(オプション) | |
title | Yes | 新しいドキュメントのタイトル |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "ドキュメントの初期内容(オプション)",
"type": "string"
},
"title": {
"description": "新しいドキュメントのタイトル",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}