# Use Python 3.13 slim image
FROM python:3.13-slim
# Set working directory
WORKDIR /app
# Copy requirements first for better layer caching
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the application code
COPY . .
# Make Python scripts executable
RUN chmod +x *.py
# Expose port for HTTP transport
EXPOSE 8000
# Default command runs the HTTP transport (for testing with curl)
# Override this when running containers for different transports
CMD ["python", "run_sse.py"]
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/jorgeper/hello-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server