batch_import_documents
Import multiple documents in bulk into Tiptap Collaboration MCP Server using a structured JSON format, enabling efficient document versioning and management.
Instructions
Import multiple documents in bulk using a predefined JSON structure
Input Schema
Name | Required | Description | Default |
---|---|---|---|
documents | Yes | Array of document arrays, where each inner array represents versions of a single document |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"documents": {
"description": "Array of document arrays, where each inner array represents versions of a single document",
"items": {
"items": {
"additionalProperties": false,
"properties": {
"created_at": {
"description": "Creation timestamp in ISO format",
"type": "string"
},
"name": {
"description": "Document name/identifier",
"type": "string"
},
"tiptap_json": {
"additionalProperties": false,
"description": "Document content in Tiptap JSON format",
"properties": {},
"type": "object"
},
"version": {
"description": "Document version number",
"type": "number"
}
},
"required": [
"created_at",
"version",
"name",
"tiptap_json"
],
"type": "object"
},
"type": "array"
},
"type": "array"
}
},
"required": [
"documents"
],
"type": "object"
}