Dart MCP Server

create_doc

Create a new document or report

Input Schema

NameRequiredDescriptionDefault
editor_duidsNoList of editor DUIDs
folder_duidYesFolder DUID to create the document in
report_kindNoKind of report (if creating a report)
subscriber_duidsNoList of subscriber DUIDs
textNoContent of the document
text_markdownNoMarkdown content of the document
titleYesTitle of the document

Input Schema (JSON Schema)

{ "properties": { "editor_duids": { "description": "List of editor DUIDs", "items": { "type": "string" }, "type": "array" }, "folder_duid": { "description": "Folder DUID to create the document in", "type": "string" }, "report_kind": { "description": "Kind of report (if creating a report)", "enum": [ "Changelog", "Standup" ], "type": "string" }, "subscriber_duids": { "description": "List of subscriber DUIDs", "items": { "type": "string" }, "type": "array" }, "text": { "description": "Content of the document", "type": "string" }, "text_markdown": { "description": "Markdown content of the document", "type": "string" }, "title": { "description": "Title of the document", "type": "string" } }, "required": [ "folder_duid", "title" ], "type": "object" }