A Model Context Protocol (MCP) server that provides tools for interacting with Tiptap Collaboration services.
{
"mcpServers": {
"tiptap-collaboration-mcp": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides tools for interacting with Tiptap Collaboration services.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 8 days ago. 9 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Tiptap Collaboration Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides tools for interacting with Tiptap Collaboration services.
get-server-statisticsGet server-wide usage statistics.
get-document-statisticsGet real-time statistics for a specific document.
id (string): Document IDcreate-documentCreate a new collaborative document.
name (string): Name of the documentcontent (object, optional): Initial content for the document in Tiptap JSON formatget-documentRetrieve information about a specific collaborative document.
id (string): ID of the document to retrievelist-documentsList all available collaborative documents.
update-documentUpdate a collaborative document with new content.
id (string): Document IDcontent (object): Document content in Tiptap JSON formatmode (string, optional): Update mode - "replace" or "append" (default: "replace")delete-documentDelete a collaborative document.
id (string): ID of the document to deleteduplicate-documentDuplicate an existing collaborative document.
sourceId (string): ID of the source document to duplicatetargetId (string): ID for the new duplicated documentsearch-documentsSearch documents using semantic search (requires Tiptap Semantic Search).
query (string): Search querylimit (number, optional): Maximum results to return (default: 10)import-markdownConvert Markdown content to Tiptap JSON format.
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")export-markdownConvert Tiptap JSON content to Markdown format.
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")git clone <repository-url>
cd tiptap-collaboration-mcp
npm install
npm run build
The server requires both a BASE_URL and API_TOKEN to connect to your Tiptap collaboration service.
The base URL of your Tiptap collaboration service. This parameter is required and the server will exit if not provided.
API token for authentication with the Tiptap collaboration service. While not strictly required, most operations will fail without proper authentication.
node /path/to/build/index.js BASE_URL <url> API_TOKEN <token>
Add this server to your Claude, Windsurf, or any other host with the relevant syntax. An example:
"tiptap-collaboration": {
"command": "node",
"args": [
"/path/to/tiptap-collaboration-mcp/build/index.js",
"BASE_URL",
"http://localhost:8080",
"API_TOKEN",
"your-actual-api-token"
]
}