Skip to main content
Glama
Dockerfile751 B
# Dockerfile for Claude Skills MCP Backend # Optimized for production deployment with CPU-only PyTorch FROM python:3.12-slim # Install uv RUN pip install --no-cache-dir uv # Set working directory WORKDIR /app # Copy backend source COPY packages/backend /app/backend COPY config.example.json /app/ # Install backend package RUN cd /app/backend && uv pip install --system . # Expose default port EXPOSE 8765 # Health check HEALTHCHECK --interval=30s --timeout=5s --start-period=60s --retries=3 \ CMD curl -f http://localhost:8765/health || exit 1 # Run backend server # Default: local access (127.0.0.1) # For remote access, override with: --host 0.0.0.0 ENTRYPOINT ["claude-skills-mcp-backend"] CMD ["--host", "0.0.0.0", "--port", "8765"]

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/OrionLi545/claude-skills-mcp'

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