Skip to main content
Glama

Ignition MCP Server

by WhiskeyHouse
Dockerfile877 B
FROM python:3.11-slim WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y \ gcc \ && rm -rf /var/lib/apt/lists/* # Copy requirements first for better caching COPY pyproject.toml ./ COPY README.md ./ # Install Python dependencies RUN pip install --no-cache-dir -e . # Copy source code COPY src/ ./src/ COPY *.py ./ # Create non-root user RUN useradd --create-home --shell /bin/bash appuser && \ chown -R appuser:appuser /app USER appuser # Expose port EXPOSE 8000 # Health check RUN apt-get update && apt-get install -y \ gcc \ curl \ && rm -rf /var/lib/apt/lists/* HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \ CMD curl -fsS http://localhost:8000/health || exit 1 # Default command CMD ["python", "-m", "uvicorn", "src.ignition_mcp.main:app", "--host", "0.0.0.0", "--port", "8000"]

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/WhiskeyHouse/ignition-mcp'

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