Skip to main content
Glama

SlopWatch MCP Server

2
4
  • Apple
Dockerfile866 B
FROM node:22-slim WORKDIR /app # Copy package files first for better caching COPY package*.json ./ # Install dependencies with verbose logging RUN npm ci --only=production --verbose # Copy source code COPY . . # Create non-root user for security RUN addgroup --system --gid 1001 nodejs RUN adduser --system --uid 1001 nodejs # Change ownership of the app directory RUN chown -R nodejs:nodejs /app # Switch to non-root user USER nodejs # Expose the port EXPOSE 3000 # Health check with better error handling HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \ CMD node -e "const http = require('http'); http.get('http://localhost:3000/health', (res) => { process.exit(res.statusCode === 200 ? 0 : 1) }).on('error', () => process.exit(1))" || exit 1 # Run the MCP server with explicit error handling CMD ["node", "src/mcp-server.js"]

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/JoodasCode/SlopWatch'

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