Comprehensive MCP server management with kubectl-style CLI. Key features in this release: - Declarative YAML apply/get round-trip with project cloning support - Gated sessions with prompt intelligence for Claude - Interactive MCP console with traffic inspector - Persistent STDIO connections for containerized servers - RBAC with name-scoped bindings - Shell completions (fish + bash) auto-generated - Rate-limit retry with exponential backoff in apply - Project-scoped prompt management - Credential scrubbing from git history Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
665 B
Docker
21 lines
665 B
Docker
# Docker image for MrMartiniMo/docmost-mcp (TypeScript STDIO MCP server)
|
|
# Not published to npm, so we clone + build from source.
|
|
# Includes patches for list_pages pagination and search response handling.
|
|
FROM node:20-slim
|
|
|
|
WORKDIR /mcp
|
|
|
|
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN git clone --depth 1 https://github.com/MrMartiniMo/docmost-mcp.git . \
|
|
&& npm install \
|
|
&& rm -rf .git
|
|
|
|
# Apply our fixes before building
|
|
COPY deploy/docmost-mcp-fixes.patch /tmp/fixes.patch
|
|
RUN git init && git add -A && git apply /tmp/fixes.patch && rm -rf .git /tmp/fixes.patch
|
|
|
|
RUN npm run build
|
|
|
|
ENTRYPOINT ["node", "build/index.js"]
|