Skip to main content
Glama

Kleros Court MCP Server

by gmkung
Dockerfile745 B
# Use Node.js 18 Alpine for smaller image size FROM node:18-alpine # Install curl for health checks RUN apk add --no-cache curl # Set working directory WORKDIR /app # Copy package files COPY package*.json ./ # Install dependencies RUN npm ci --only=production && npm cache clean --force # Copy compiled source code COPY dist/ ./dist/ # Create non-root user for security RUN addgroup -g 1001 -S nodejs && \ adduser -S kleros -u 1001 # Change ownership of the app directory RUN chown -R kleros:nodejs /app USER kleros # Expose port EXPOSE 8080 # Health check HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \ CMD curl -f http://localhost:8080/health || exit 1 # Start the server CMD ["node", "dist/index.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/gmkung/kleros-court-mcp'

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