FROM python:3.11-slim AS builder
# Set working directory
WORKDIR /app
# Copy project files
COPY . /app/
# Install the package
RUN pip install --no-cache-dir -e .
# Production image
FROM python:3.11-slim
WORKDIR /app
# Copy installed package from builder
COPY --from=builder /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages
COPY --from=builder /usr/local/bin /usr/local/bin
COPY --from=builder /app /app
# Run the server
CMD ["python", "-m", "usekeen_mcp"]
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/PromptMixerDev/usekeen-python-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server