Skip to main content
Glama

BookStack MCP Server

by ttpears
Dockerfile715 B
FROM node:20-alpine WORKDIR /app # Copy package files COPY package*.json ./ # Install all dependencies (including dev for build) RUN npm install # Copy source code and build COPY tsconfig.json ./ COPY src/ ./src/ RUN npm run build # Remove dev dependencies and clean cache RUN npm ci --omit=dev && npm cache clean --force # Create non-root user RUN addgroup -g 1001 -S nodejs && \ adduser -S nodejs -u 1001 # Change ownership of the app directory RUN chown -R nodejs:nodejs /app USER nodejs EXPOSE 8007 # Health check HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ CMD wget --no-verbose --tries=1 --spider http://localhost:8007/health || exit 1 CMD ["node", "dist/index.js"]

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/ttpears/bookstack-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server