Skip to main content
Glama

GoHighLevel MCP Server

Dockerfile682 B
# Build stage FROM node:18-alpine AS builder # Set working directory WORKDIR /app # Copy package files COPY package*.json ./ # Install ALL dependencies (including dev dependencies for TypeScript) RUN npm ci # Copy all source files COPY . . # Build the TypeScript project RUN npm run build # Production stage FROM node:18-alpine # Set working directory WORKDIR /app # Copy package files COPY package*.json ./ # Install only production dependencies RUN npm ci --only=production # Copy built files from builder stage COPY --from=builder /app/dist ./dist # Set production environment ENV NODE_ENV=production # Expose port EXPOSE 8000 # Start the server CMD ["npm", "start"]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/clickmediapropy/gohighlevel-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server