We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/foxglovebrands/geenie-proxy'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•766 B
# Use Node.js 20 Alpine for smaller image size
FROM node:20-alpine
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install ALL dependencies (including dev deps for build)
RUN npm ci
# Copy TypeScript config and source
COPY tsconfig.json ./
COPY src ./src
# Build TypeScript
RUN npm run build
# Remove dev dependencies and source files after build
RUN npm prune --production && \
rm -rf src tsconfig.json
# Expose port (Railway will set PORT env var)
EXPOSE 3001
# Health check
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD node -e "require('http').get('http://localhost:3001/health', (r) => {process.exit(r.statusCode === 200 ? 0 : 1)})"
# Start the server
CMD ["node", "dist/index.js"]