We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pablomartinferrari/mcp-demo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•400 B
FROM python:3.11-slim
WORKDIR /app
# Copy the server code and requirements
COPY main.py .
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Make sure Python output is sent straight to terminal without buffering
ENV PYTHONUNBUFFERED=1
ENV PYTHONDONTWRITEBYTECODE=1
# Use -u flag to ensure unbuffered output
ENTRYPOINT ["python", "-u", "main.py"]