# Use Node.js 18 Alpine image
FROM node:18-alpine
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies without running prepare script
RUN npm ci --ignore-scripts
# Copy source code
COPY . .
# Build the TypeScript code
RUN npm run build
# Remove dev dependencies to reduce image size
RUN npm prune --production
# Create a non-root user
RUN addgroup -g 1001 -S nodejs
RUN adduser -S nodejs -u 1001
# Change ownership of the app directory
RUN chown -R nodejs:nodejs /app
USER nodejs
# Expose port (if needed for health checks)
EXPOSE 3000
# Start the application
CMD ["npm", "run", "health"]
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/Angad-2002/attendee-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server