Allows exporting collaborative documentation pages from Docmost into Markdown format, facilitating the portability of workspace content.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-docmostsearch for pages about our product roadmap"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Docmost Server
Model Context Protocol (MCP) server for Docmost - an open-source collaborative documentation platform.
Features
Pages: Get, search, list, create, update, delete pages
Spaces: List, get, create spaces
Comments: List and add comments on pages
Users: Get current user, list workspace members
History: View page revision history
Export: Export pages to markdown, HTML, or PDF
Installation
Using uvx (Recommended)
uvx mcp-docmostUsing pip
pip install mcp-docmostConfiguration
Getting Auth Token
Login to Docmost in your browser
Open Developer Tools (F12) → Application → Cookies
Copy the
authTokencookie value
Add to Kiro MCP Config
Add to .kiro/settings/mcp.json:
{
"mcpServers": {
"docmost": {
"command": "uvx",
"args": ["mcp-docmost"],
"env": {
"DOCMOST_URL": "https://your-docmost-instance.com",
"DOCMOST_AUTH_TOKEN": "your-auth-token-here"
}
}
}
}Available Tools
Page Operations
Tool | Description |
| Get page info and content by ID or slug |
| Search pages by query text |
| List pages in a space or under parent |
| Create a new page |
| Update page title or content |
| Delete a page |
Space Operations
Tool | Description |
| List all spaces in workspace |
| Get space info by ID or slug |
| Create a new space |
Comment Operations
Tool | Description |
| List comments on a page |
| Add a comment to a page |
User Operations
Tool | Description |
| Get current authenticated user |
| List workspace members |
History & Export
Tool | Description |
| Get page revision history |
| Export page (markdown/html/pdf) |
Example Usage
User: Search for pages about "AI gợi ý"
Assistant: [calls docmost_search_pages with query="AI gợi ý"]
User: Get the content of page yQQmTbt8it
Assistant: [calls docmost_get_page with page_id="yQQmTbt8it"]
User: List all spaces
Assistant: [calls docmost_list_spaces]Development
# Install dependencies
cd mcp-docmost
uv sync
# Run server directly
uv run python -m mcp_docmost.serverLicense
MIT
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.