mcp-docmost
An MCP server for the Docmost documentation platform that enables managing pages, spaces, and comments through natural language. It supports content search, page exports, and revision history tracking within the Docmost workspace.
README
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-docmost
Using pip
pip install mcp-docmost
Configuration
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 |
|---|---|
docmost_get_page |
Get page info and content by ID or slug |
docmost_search_pages |
Search pages by query text |
docmost_list_pages |
List pages in a space or under parent |
docmost_create_page |
Create a new page |
docmost_update_page |
Update page title or content |
docmost_delete_page |
Delete a page |
Space Operations
| Tool | Description |
|---|---|
docmost_list_spaces |
List all spaces in workspace |
docmost_get_space |
Get space info by ID or slug |
docmost_create_space |
Create a new space |
Comment Operations
| Tool | Description |
|---|---|
docmost_list_comments |
List comments on a page |
docmost_add_comment |
Add a comment to a page |
User Operations
| Tool | Description |
|---|---|
docmost_get_current_user |
Get current authenticated user |
docmost_list_members |
List workspace members |
History & Export
| Tool | Description |
|---|---|
docmost_get_page_history |
Get page revision history |
docmost_export_page |
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.server
License
MIT
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.