MCP Outline Server

by Vortiago
Verified

create_document

Creates a new document in a specified collection. Use this tool when you need to: - Add new content to a knowledge base - Create documentation, guides, or notes - Add a child document to an existing parent - Start a new document thread or topic Args: title: The document title collection_id: The collection ID to create the document in text: Optional markdown content for the document parent_document_id: Optional parent document ID for nesting publish: Whether to publish the document immediately (True) or save as draft (False) Returns: Result message with the new document ID

Input Schema

NameRequiredDescriptionDefault
collection_idYes
parent_document_idNo
publishNo
textNo
titleYes

Input Schema (JSON Schema)

{ "properties": { "collection_id": { "title": "Collection Id", "type": "string" }, "parent_document_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Parent Document Id" }, "publish": { "default": true, "title": "Publish", "type": "boolean" }, "text": { "default": "", "title": "Text", "type": "string" }, "title": { "title": "Title", "type": "string" } }, "required": [ "title", "collection_id" ], "title": "create_documentArguments", "type": "object" }
ID: yejga73oe8