Skip to main content
Glama
Dockerfile668 B
FROM node:20-alpine # Set environment variables ENV NODE_ENV=production \ WATERCRAWL_BASE_URL=https://app.watercrawl.dev \ SSE_PORT=3000 \ SSE_ENDPOINT=/sse # Accept version as build argument ARG VERSION ENV VERSION=${VERSION} # Install the specific version of the published package globally RUN npm install -g @watercrawl/mcp@${VERSION} # Create a non-root user RUN addgroup -g 1001 -S watercrawl && \ adduser -S watercrawl -u 1001 USER watercrawl # Expose port for SSE server EXPOSE 3000 # Set entrypoint with default SSE mode ENTRYPOINT ["watercrawl-mcp"] # Default command line arguments CMD ["sse", "--port", "3000", "--endpoint", "/sse"]

Latest Blog Posts

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/watercrawl/watercrawl-mcp'

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