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•323 B
FROM node:20-slim
WORKDIR /app
# Copy package files first for layer caching
COPY package*.json ./
# Install production dependencies
RUN npm ci
# Copy source and build
COPY . .
RUN npm run build
# Expose port
EXPOSE 8080
# Run the native HTTP server directly - no mcp-proxy needed!
CMD ["node", "dist/http-server.js"]