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 accessible spaces and 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. |
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}
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.GET|POST /bridge/v1/pages- list or create pages.GET|PATCH /bridge/v1/pages/{page_id}- read or update a page.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_spaceslist_pagesget_pagesearch_pagescreate_pageupdate_page
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 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
- Flicense-qualityDmaintenanceAn 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.
- Alicense-qualityDmaintenanceMCP server for Confluence Cloud that enables searching, reading, managing documentation and linting for best practices.363MIT
Related MCP Connectors
MCP server for AgentDocs (agentdocs.eu): read, search, write, comment on & share Markdown docs.
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
A MCP server built for developers enabling Git based project management with project and personal…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Howlpy/docmost-community-bridge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server