We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hridayshah7/gohighlevel-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•437 B
FROM node:18-alpine
WORKDIR /app
# Copy package files for production dependencies only
COPY package*.json ./
# Install only production dependencies
RUN npm ci --only=production
# Copy the pre-built dist folder and other necessary files
COPY dist/ ./dist/
COPY .env* ./
# Set environment variables
ENV MCP_MODE=http
ENV NODE_ENV=production
# Expose port
EXPOSE 8080
# Start the server directly
CMD ["node", "dist/hybrid-server.js"]