Docmost Local MCP
Docmost MCP server for local IDE integrations
Ask AI about Docmost Local MCP
Powered by Claude · Grounded in docs
I know everything about Docmost Local MCP. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
@wisflux/docmost-local-mcp
MCP server for Docmost that is built for self-hosted instances, especially deployments that do not have an enterprise license but still want reliable MCP access from local IDEs and AI tools.
The package is launched with npx, while the actual server is a Rust binary downloaded from GitHub Releases during install. That binary handles stdio MCP traffic, local authentication UX, session storage, and Docmost API access.
The main reason this project exists: bring MCP access to self-hosted Docmost setups without making an enterprise license a prerequisite.
Why This Project
Many MCP integrations are designed around hosted or enterprise assumptions. This project is intentionally optimized for self-hosted Docmost:
- Works against your own Docmost base URL
- Uses Docmost email/password authentication
- Stores session state locally for reuse
- Opens a local auth flow instead of requiring a separate hosted control plane
- Ships as a simple
npxentrypoint for easy IDE integration
If you run your own Docmost and want it available inside Cursor, Claude Desktop, or another MCP client, this package is the straightforward path.
Highlights
- Strong fit for self-hosted Docmost instances without enterprise licensing
- Rust server core with a small Node launcher for predictable local installs
- Native auth window on supported platforms, with browser fallback
- Explicit Docmost instance selection via startup config
- Session reuse with JWT expiry checks and automatic re-login
- OS keychain credential storage on supported platforms
- Clean tool surface for spaces, pages, comments, members, and current user context
Available Tools
list_spaces: list available Docmost spacesget_space: fetch details for a specific spacesearch_docs: search documentation, optionally scoped to a spacesearch_pages: backward-compatible alias forsearch_docsget_page: fetch a page and return its content as Markdownlist_pages: list recent pages in a spacelist_child_pages: list child pages for a parent page IDget_comments: list comments for a pagelist_workspace_members: list workspace membersget_current_user: fetch the authenticated user and workspace context
Roadmap
Write support is planned next.
Planned write tools:
| Tool | Purpose |
|---|---|
create_page | Create a new page in a space |
update_page | Update an existing page's title or content |
duplicate_page | Duplicate a page within its space |
copy_page_to_space | Copy a page to a different space |
move_page | Move a page to a different position or parent |
move_page_to_space | Move a page to a different space |
create_space | Create a new space |
update_space | Update a space's name or description |
create_comment | Add a comment to a page |
update_comment | Update an existing comment |
Requirements
- Node.js 18 or newer for
npx - A reachable Docmost instance
- Email/password authentication enabled in that Docmost instance
Quick Start
Run the server directly with npx:
npx -y @wisflux/docmost-local-mcp --base-url=https://docs.example.com
You can also provide the base URL with an environment variable:
DOCMOST_BASE_URL=https://docs.example.com npx -y @wisflux/docmost-local-mcp
MCP Client Configuration
Most MCP clients can launch the server directly with npx:
{
"mcpServers": {
"docmost": {
"command": "npx",
"args": ["-y", "@wisflux/docmost-local-mcp", "--base-url=https://docs.example.com"]
}
}
}
This setup works well when you want a fixed Docmost instance per client configuration. If --base-url or DOCMOST_BASE_URL is set, the login page shows that URL prefilled and locks the field. If no base URL is configured, the login flow asks for it during interactive sign-in.
Authentication Flow
- Your MCP client launches the server over stdio.
- On the first authenticated tool call, the server starts a local HTTP login page on
127.0.0.1. - The server opens a native auth window when available, or falls back to the system browser.
- You enter your email and password there. If
--base-urlorDOCMOST_BASE_URLis set, the Docmost URL is prefilled and locked. - The server signs in through
/api/auth/login, extracts theauthTokencookie, stores the session, and optionally stores credentials for automatic re-login. - Future requests reuse the saved token until it is close to expiry or rejected by Docmost.
Local State And Credential Storage
The server stores local state in:
~/.docmost-local-mcp/
Files used there:
config.json: last base URL and emailsession.json: saved auth token and expiry
Credentials are stored in the OS keychain when available, which is the preferred path on supported platforms.
If secure OS credential storage is unavailable, the server falls back to encrypted local credential storage so it can still support login reuse without writing plain-text credentials. That fallback is intentionally secondary to keychain-backed storage.
Platform Notes
The native auth window uses the system webview on each platform:
- macOS:
WKWebView - Windows:
WebView2 - Linux:
WebKitGTK
Important caveats:
- Windows needs the WebView2 runtime available
- Linux desktop environments need WebKitGTK packages installed
- When the binary is built without the
native-webviewfeature, browser fallback is always used
Tool Reference
list_spaces
Returns Docmost space names, slugs, and IDs.
search_docs
Inputs:
query: required search textspace_id: optional Docmost space ID
search_pages
Inputs:
query: required search textspace_id: optional Docmost space ID
This is a backward-compatible alias for page search. search_docs remains available.
get_space
Inputs:
space_id: required Docmost space ID
get_page
Inputs:
slug_id: the page slug ID returned bysearch_docs
list_pages
Inputs:
space_id: required Docmost space IDlimit: optional page count limitcursor: optional pagination cursor
list_child_pages
Inputs:
page_id: required parent page IDlimit: optional page count limitcursor: optional pagination cursor
get_comments
Inputs:
page_id: required page IDlimit: optional comment count limitcursor: optional pagination cursor
list_workspace_members
Inputs:
limit: optional member count limitcursor: optional pagination cursorquery: optional member search textadmin_view: optional admin visibility flag
get_current_user
Inputs:
- none
Development
For maintainer and contributor workflow details, see CONTRIBUTING.md.
License
MIT
