duplicate_document
Duplicate collaborative documents by specifying source and target IDs using the Tiptap Collaboration MCP Server tool for efficient document management and replication.
Instructions
Duplicate a collaborative document
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sourceId | Yes | ID of the source document to duplicate | |
targetId | Yes | ID for the new duplicated document |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"sourceId": {
"description": "ID of the source document to duplicate",
"type": "string"
},
"targetId": {
"description": "ID for the new duplicated document",
"type": "string"
}
},
"required": [
"sourceId",
"targetId"
],
"type": "object"
}