Skip to main content
Glama

Markmap MCP Server

Dockerfile878 B
FROM node:20-alpine AS builder # Create app directory WORKDIR /app # Copy package.json and package-lock.json COPY package*.json ./ # Install dependencies, ignoring any prepare scripts RUN npm install --ignore-scripts # Copy the rest of the application code COPY src ./src/ COPY tsconfig.json ./ # Build the application RUN npm run build # Use Node.js 20 Alpine as the base image for the runtime stage FROM node:20-alpine AS runner # Set the working directory for the runtime stage WORKDIR /app # Copy the built application and dependencies from the builder stage COPY --from=builder /app/package*.json ./ COPY --from=builder /app/build ./build RUN npm install --ignore-scripts --omit=dev # Define environment variable for markmap data directory ENV MARKMAP_DIR=/data/markmap # Define the command to run when the container starts ENTRYPOINT ["node", "build/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/jinzcdev/markmap-mcp-server'

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