create_document
Initiate a collaborative document with a specified name and optional initial content using the Tiptap Collaboration MCP Server for efficient team editing and management.
Instructions
Create a new collaborative document
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | Initial content for the document | |
name | Yes | Name of the document |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "Initial content for the document",
"type": "string"
},
"name": {
"description": "Name of the document",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}