Skip to main content
Glama

MCP Shipping Control Center

by bischoff99
Dockerfile927 B
# Build stage FROM node:20-alpine AS builder WORKDIR /app # Copy package files COPY package*.json ./ COPY web/package*.json ./web/ # Install dependencies RUN npm ci WORKDIR /app/web RUN npm ci WORKDIR /app # Copy source code COPY . . # Build TypeScript server RUN npm run build # Build web frontend WORKDIR /app/web RUN npm run build WORKDIR /app # Production stage FROM node:20-alpine WORKDIR /app # Copy built server COPY --from=builder /app/dist ./dist COPY --from=builder /app/web/build ./web/build COPY --from=builder /app/package*.json ./ # Install production dependencies only RUN npm ci --only=production # Copy source files needed at runtime COPY src ./src # Expose port EXPOSE 3000 # Health check HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ CMD wget --no-verbose --tries=1 --spider http://localhost:3000/health || exit 1 # Run the application CMD ["node", "dist/server.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/bischoff99/mcp-server'

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