We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pl974/mcp-wayback-machine'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•533 B
FROM node:22-slim AS builder
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install all dependencies (including dev for build)
RUN npm ci --ignore-scripts
# Copy source
COPY . .
# Build TypeScript
RUN npm run build
# Production stage
FROM node:22-slim
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install production dependencies only
RUN npm ci --only=production --ignore-scripts
# Copy built files from builder
COPY --from=builder /app/dist ./dist
EXPOSE 8081
CMD ["node", "dist/http-server.js"]