# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config
FROM python:3.11-slim

WORKDIR /app
ENV PYTHONUNBUFFERED=1

# Copy all files
COPY . .

# Install dependencies and CLI
RUN pip install --no-cache-dir .

# Default command
CMD ["python", "-m", "mcp.main", "serve", "--transport", "stdio"]
