
Tiptap Collaboration MCP Server
Enables interaction with Tiptap collaborative document services through comprehensive document management, real-time statistics, markdown conversion, and batch operations. Supports creating, updating, searching, and managing collaborative documents with health monitoring and semantic search capabilities.
README
Tiptap Collaboration MCP Server
A Model Context Protocol (MCP) server that provides tools for interacting with Tiptap Collaboration services.
Tools Available
Health & Statistics
get_collaboration_health
Check the health status of the Tiptap collaboration service.
- Parameters: None
- Returns: Health status information (DB, Redis, License status)
get_server_statistics
Get server-wide usage statistics.
- Parameters: None
- Returns: Total documents, connections, concurrent users, version info
get_document_statistics
Get real-time statistics for a specific document.
- Parameters:
id
(string): Document ID
- Returns: Current connections, connected IPs, document activity
Document Management
create_document
Create a new collaborative document.
- Parameters:
name
(string): Name of the documentcontent
(string, optional): Initial content for the document
- Returns: Created document information
get_document
Retrieve information about a specific collaborative document.
- Parameters:
id
(string): ID of the document to retrieve
- Returns: Document information and content
list_documents
List all available collaborative documents.
- Parameters: None
- Returns: Array of all documents in the system
update_document
Update a collaborative document with new content.
- Parameters:
id
(string): Document IDcontent
(object): Document content in Tiptap JSON formatmode
(string, optional): Update mode - "replace" or "append" (default: "replace")
- Returns: Updated document information
delete_document
Delete a collaborative document.
- Parameters:
id
(string): ID of the document to delete
- Returns: Deletion confirmation
Advanced Document Operations
duplicate_document
Duplicate an existing collaborative document.
- Parameters:
sourceId
(string): ID of the source document to duplicatetargetId
(string): ID for the new duplicated document
- Returns: Duplicated document information
encrypt_document
Encrypt a collaborative document using Base64 encryption.
- Parameters:
id
(string): Document IDcontent
(object): Document content in Tiptap JSON format to encrypt
- Returns: Encryption confirmation
search_documents
Search documents using semantic search (requires Tiptap Semantic Search).
- Parameters:
query
(string): Search querylimit
(number, optional): Maximum results to return (default: 10)
- Returns: Array of matching documents with relevance scores
Markdown Conversion
import_markdown
Convert Markdown content to Tiptap JSON format.
- Parameters:
appId
(string): Your Tiptap App ID for the conversion servicecontent
(string): Markdown content to convertformat
(string, optional): "md" or "gfm" (GitHub Flavored Markdown, default: "md")
- Returns: Converted Tiptap JSON content
export_markdown
Convert Tiptap JSON content to Markdown format.
- Parameters:
appId
(string): Your Tiptap App ID for the conversion servicecontent
(object): Tiptap JSON content to convertformat
(string, optional): "md" or "gfm" (GitHub Flavored Markdown, default: "md")
- Returns: Converted Markdown content
Batch Operations
batch_import_documents
Import multiple documents in bulk using a predefined JSON structure.
- Parameters:
documents
(array): Array of document arrays, where each inner array represents versions of a single document
- Returns: Import results for all documents
Installation
git clone <repository-url>
cd tiptap-collaboration-mcp
npm install
npm run build
Configuration
The server requires both a BASE_URL and API_TOKEN to connect to your Tiptap collaboration service.
Required Parameters
BASE_URL (Required)
The base URL of your Tiptap collaboration service. This parameter is required and the server will exit if not provided.
API_TOKEN (Recommended)
API token for authentication with the Tiptap collaboration service. While not strictly required, most operations will fail without proper authentication.
Command Line Usage
node /path/to/build/index.js BASE_URL <url> API_TOKEN <token>
Client Usage
Add this server to your Claude, Windsurf, or any other client the relevant syntax. An example:
{
"mcpServers": {
"user": {
"tiptap-collaboration": {
"command": "node",
"args": [
"/path/to/tiptap-collaboration-mcp/build/index.js",
"BASE_URL",
"http://localhost:8080",
"API_TOKEN",
"your-actual-api-token"
]
}
}
}
}
License
This project is licensed under the MIT License - see the LICENSE file for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.