We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SarthakRay26/open-meteo-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•567 B
# Use official Node.js runtime as base image
FROM node:18-alpine
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install all dependencies (including dev dependencies for build)
RUN npm ci
# Copy source code
COPY . .
# Build the project
RUN npm run build
# Remove dev dependencies and reinstall only production dependencies
RUN npm ci --only=production && npm cache clean --force
# Expose stdio for MCP communication
EXPOSE 3000
# Default environment
ENV NODE_ENV=production
# Run the MCP server
CMD ["node", "dist/index.js"]