We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Mnehmos/ChatRPG'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•400 B
FROM node:20-slim
WORKDIR /app
# Copy package files first for layer caching
COPY package*.json ./
# Install production dependencies
RUN npm ci
# Install mcp-proxy globally
RUN npm install -g mcp-proxy
# Copy source and build
COPY . .
RUN npm run build
# Make startup script executable
RUN chmod +x start.sh
# Expose port
EXPOSE 8080
# Use script to handle argument passing
CMD ["./start.sh"]