Skip to main content
Glama

WoW Guild Analytics MCP Server

by noahmott
Dockerfile1.05 kB
FROM python:3.11-slim # Set environment variables ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1 ENV PORT=8000 # Install system dependencies RUN apt-get update && apt-get install -y \ gcc \ curl \ && rm -rf /var/lib/apt/lists/* # Set work directory WORKDIR /app # Install Python dependencies COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy application code COPY app/ ./app/ COPY *.py ./ COPY .env.example ./ COPY pyproject.toml ./ # Set Python path to include our modules ENV PYTHONPATH=/app:$PYTHONPATH # Copy entrypoint script and set permissions COPY config/docker/entrypoint.sh /app/entrypoint.sh RUN chmod +x /app/entrypoint.sh # Create non-root user RUN useradd --create-home --shell /bin/bash app RUN chown -R app:app /app USER app # Health check HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ CMD curl -f http://localhost:$PORT/health || exit 1 # Expose port EXPOSE $PORT # Run application with Redis-based server CMD ["python", "-m", "app.main_redis"]

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/noahmott/world_of_warcraft_mcp_server'

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