Docmost Community Bridge
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., "@Docmost Community BridgeList spaces and pages I have access to"
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.
Docmost Community Bridge
An independent, AGPL-3.0 bridge that adds a small REST API and an MCP Streamable HTTP server to a self-hosted Docmost Community installation.
The bridge uses the authenticated routes already available in the AGPL Docmost Community server. It does not contain, copy, or depend on Docmost Enterprise API or MCP code.
Features
List and create accessible spaces, and list pages.
Read page content as Markdown, HTML, or JSON.
Search accessible pages.
Create pages from Markdown.
Rename pages or append, prepend, and replace Markdown content.
Use the same operations through REST or MCP.
Protect every data endpoint with a static Bearer token.
Run as a non-root user in Docker.
The bridge intentionally does not expose permanent deletion operations.
Related MCP server: mcp-docmost
Requirements
A reachable Docmost Community instance.
A dedicated Docmost user account, preferably restricted to the spaces the automation is allowed to access.
Docker, or Python 3.12 if running without Docker.
Configuration
Variable | Description |
| Internal Docmost URL, such as |
| Email of the Docmost automation account. |
| Password of the Docmost automation account. |
| Long random Bearer token required by REST and MCP clients. |
| Public HTTPS URL used to allow the reverse-proxy host, such as |
Never commit these values. Store them in a local .env file or a secrets
manager.
Docker Compose example
services:
docmost-bridge:
build: .
restart: unless-stopped
environment:
DOCMOST_URL: http://docmost:3000
DOCMOST_EMAIL: ${DOCMOST_EMAIL}
DOCMOST_PASSWORD: ${DOCMOST_PASSWORD}
BRIDGE_TOKEN: ${BRIDGE_TOKEN}
BRIDGE_PUBLIC_URL: https://docs.example.com
ports:
- "127.0.0.1:8000:8000"Place the bridge on a Docker network shared with Docmost. Keep the published port bound to localhost and expose it through a TLS reverse proxy.
Endpoints
POST /mcp- MCP Streamable HTTP endpoint.GET /bridge/v1/spaces- list accessible spaces.POST /bridge/v1/spaces- create a space fromnameand optionaldescription,slug, orvisible_to_everyone(defaults totrue).DELETE /bridge/v1/spaces/{space_id}- permanently delete a space and its contents.GET|POST /bridge/v1/pages- list or create pages.GET|PATCH /bridge/v1/pages/{page_id}- read or update a page.POST /bridge/v1/pages/{page_id}/move- move a page to another space.GET /bridge/v1/search?q=...- search pages.GET /health- public container health check.
All endpoints except /health require this header:
Authorization: Bearer YOUR_BRIDGE_TOKENREST examples
curl -H "Authorization: Bearer $BRIDGE_TOKEN" \
https://docs.example.com/bridge/v1/spaces
curl -X POST \
-H "Authorization: Bearer $BRIDGE_TOKEN" \
-H "Content-Type: application/json" \
-d '{"space_id":"SPACE_UUID","title":"Meeting notes","content":"# Notes"}' \
https://docs.example.com/bridge/v1/pagesMCP client configuration
Configure an MCP client with:
Transport: Streamable HTTP
URL:
https://docs.example.com/mcpHeader:
Authorization: Bearer YOUR_BRIDGE_TOKEN
Available MCP tools:
docmost_healthlist_spacescreate_spacelist_pagesget_pagesearch_pagescreate_pageupdate_pagemove_page_to_space
Security notes
The bridge acts with the permissions of
DOCMOST_EMAIL.Use a dedicated Docmost account instead of a workspace owner in production.
Use a long random Bearer token and rotate it if it is disclosed.
Do not expose port
8000directly to the Internet.Terminate HTTPS at a trusted reverse proxy.
License
This project is licensed under the GNU Affero General Public License v3.0. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for innovationlab documentation, generated by doc2mcp.
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for opencode documentation, generated by doc2mcp.
An MCP server that provides access to Testiny projects, test cases and test runs
Related MCP Servers
- FlicenseCqualityDmaintenanceAn MCP server that enables searching and retrieving content from Confluence documentation systems, providing capabilities for both document searches and full page content retrieval.21-
- AlicenseAqualityDmaintenanceAn 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.131MIT
- AlicenseNot gradedqualityDmaintenanceProvides AI assistants with direct access to self-hosted Docmost documentation through tools for listing spaces, searching content, and retrieving pages in Markdown format. It facilitates seamless documentation lookup and content retrieval within MCP-compatible clients.5MIT
- FlicenseNot gradedqualityDmaintenanceAn MCP server implementation for interacting with self-hosted Confluence Data Center or Server instances via search, content retrieval, and optional write operations. It features space auto-discovery, audit logging, and granular access control for secure enterprise collaboration.-