get_document
Retrieve detailed information about a collaborative document by specifying its unique ID. The tool works with the Tiptap Collaboration MCP Server to manage document interactions.
Instructions
Get information about a collaborative document
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ID of the document to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "ID of the document to retrieve",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}