We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/luquimbo/tability-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•875 B
# Build stage
FROM node:20-alpine AS builder
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci
# Copy source code
COPY tsconfig.json ./
COPY src/ ./src/
# Build TypeScript
RUN npm run build
# Production stage
FROM node:20-alpine AS production
WORKDIR /app
# Copy package files and install production dependencies only
COPY package*.json ./
RUN npm ci --omit=dev
# Copy built files from builder stage
COPY --from=builder /app/dist ./dist
# Copy public files for the setup page
COPY public/ ./public/
# Set environment variables
ENV NODE_ENV=production
ENV PORT=8080
# Expose port
EXPOSE 8080
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://localhost:8080/health || exit 1
# Start the HTTP server
CMD ["node", "dist/http-server.js"]