Skip to main content
Glama

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

DOCMOST_URL

Internal Docmost URL, such as http://docmost:3000.

DOCMOST_EMAIL

Email of the Docmost automation account.

DOCMOST_PASSWORD

Password of the Docmost automation account.

BRIDGE_TOKEN

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_TOKEN

REST 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/pages

MCP client configuration

Configure an MCP client with:

  • Transport: Streamable HTTP

  • URL: https://docs.example.com/mcp

  • Header: Authorization: Bearer YOUR_BRIDGE_TOKEN

Available MCP tools:

  • docmost_health

  • list_spaces

  • list_pages

  • get_page

  • search_pages

  • create_page

  • update_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 8000 directly 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.

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

View all related MCP servers

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…

View all MCP Connectors

Latest Blog Posts

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