Create a document
create_documentCreate a Google Doc with a title and optional Markdown content that converts to native formatting, returning the document ID for subsequent edits.
Instructions
Creates a new Google Doc and returns its documentId. Without markdown it calls documents.create, which accepts ONLY a title — add content afterwards with insert_text/import_markdown. With markdown, the document is created from that Markdown via Drive conversion (headings, bold/italic, links, lists, tables and code blocks become native Docs formatting) and the result carries id (the documentId), name and mimeType. The document lands in the authorized user's My Drive root; moving or sharing it needs the Drive UI or API, which this server does not cover.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | The document title (the Drive file name). | |
| markdown | No | Initial content as Markdown; omitted = an empty document. |