Skip to main content
Glama

Lulu Print MCP Server

by devlimelabs
Dockerfile913 B
FROM node:20-alpine AS builder WORKDIR /app # Install pnpm first RUN npm install -g pnpm # Copy package files and install dependencies using pnpm COPY package.json pnpm-lock.yaml ./ RUN pnpm install --frozen-lockfile # Copy source code COPY . . # Build the application RUN pnpm build # Production stage FROM node:20-alpine WORKDIR /app # Install pnpm RUN npm install -g pnpm # Create a minimal package.json to avoid prepare scripts RUN echo '{}' > package.json # Copy built application from builder stage FIRST COPY --from=builder /app/dist ./dist # Then copy the real package files COPY package.json pnpm-lock.yaml ./ # Install production dependencies without running scripts RUN pnpm install --frozen-lockfile --prod --ignore-scripts # Copy .env.example file COPY .env.example .env.example # Set environment variables ENV NODE_ENV=production # Start the application 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/devlimelabs/lulu-print-mcp'

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