Skip to main content
Glama
MIT License
8
1
  • Apple
  • Linux
Dockerfile852 B
# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config # Multi-stage Dockerfile for ID Generator MCP # Builder stage: install dependencies and build the project FROM node:lts-alpine AS builder WORKDIR /app # Copy project files COPY package.json package-lock.json tsconfig.json ./ COPY src ./src # Install all dependencies (including dev) and build RUN npm ci && npm run build # Runtime stage: install production dependencies only, skipping build scripts FROM node:lts-alpine AS runtime WORKDIR /app # Copy package files and install production dependencies without running scripts COPY package.json package-lock.json ./ RUN npm ci --omit=dev --ignore-scripts # Copy built output from builder COPY --from=builder /app/build ./build # Default entrypoint to start the MCP server 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/devstacks-software-engineering/id-generator-mcp'

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