Skip to main content
Glama

Appointment Scheduler MCP Server

Dockerfile•581 B
FROM python:3.13-slim # Set working directory WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y \ gcc \ && rm -rf /var/lib/apt/lists/* # Copy dependency files COPY pyproject.toml uv.lock ./ # Install uv and dependencies RUN pip install uv && uv sync --frozen --no-install-project # Copy source code COPY . . # Create non-root user RUN useradd --create-home --shell /bin/bash app \ && chown -R app:app /app USER app # Expose port (if needed for MCP server) EXPOSE 8000 # Run the MCP server CMD ["uv", "run", "python", "main.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/Juan-Andres-Motta/backend-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server