Skip to main content
Glama

UAB Research Computing Documentation MCP Server

by jgordini
Dockerfile•919 B
# Dockerfile for UAB RC Docs MCP Server (Smithery) # Optimized for Smithery deployment with streamable HTTP support # Use Python image with uv pre-installed FROM ghcr.io/astral-sh/uv:python3.12-alpine # Install the project into /app WORKDIR /app # Enable bytecode compilation for better performance ENV UV_COMPILE_BYTECODE=1 # Copy from the cache instead of linking since it's a mounted volume ENV UV_LINK_MODE=copy # Copy dependency files first for better layer caching COPY pyproject.toml ./ # Install dependencies using uv - including uvicorn for ASGI server RUN uv pip install --system mcp httpx uvicorn # Copy the server file COPY uab_docs_server_final.py ./ # Smithery sets PORT environment variable to 8081 ENV PORT=8081 # Python unbuffered output for better logging ENV PYTHONUNBUFFERED=1 # Expose the port (Smithery uses 8081) EXPOSE 8081 # Run the server CMD ["python", "uab_docs_server_final.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/jgordini/rcmcp'

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