We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Amit-confer/Gmail-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•453 B
# Use official Python runtime as a parent image
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Copy requirements first to leverage Docker cache
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application code
COPY . .
# Expose port (FastMCP/Uvicorn default is often 8000)
EXPOSE 8000
# Run the server using Uvicorn
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8000"]